From 466d6a96f69f3243525bb59d2224b093a386931c Mon Sep 17 00:00:00 2001 From: osbm Date: Wed, 5 Feb 2025 00:16:16 +0300 Subject: [PATCH] why so many comments --- hosts/tartarus/configuration.nix | 27 --------------------------- hosts/ymir/configuration.nix | 13 ------------- 2 files changed, 40 deletions(-) diff --git a/hosts/tartarus/configuration.nix b/hosts/tartarus/configuration.nix index a2efdfa..25853a6 100644 --- a/hosts/tartarus/configuration.nix +++ b/hosts/tartarus/configuration.nix @@ -1,6 +1,3 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, @@ -38,11 +35,6 @@ in { boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "tartarus"; # Define your hostname. - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking networking.networkmanager.enable = true; @@ -63,24 +55,5 @@ in { environment.systemPackages = with pkgs; [ ]; - # Some programs need SUID wrappers, can be configured further or are - # started in user sessions. - # programs.mtr.enable = true; - - # List services that you want to enable: - - # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; - # networking.firewall.allowedUDPPorts = [ ... ]; - # Or disable the firewall altogether. - # networking.firewall.enable = false; - # system.nixos.label = system-label; - - # This value determines the NixOS release from which the default - # settings for stateful data, like file locations and database versions - # on your system were taken. It‘s perfectly fine and recommended to leave - # this value at the release version of the first install of this system. - # Before changing this value read the documentation for this option - # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = stateVersion; # Did you read the comment? } diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index adb87c3..01939d4 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -29,9 +29,7 @@ in { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - #boot.initrd.luks.devices."luks-b84e6223-825f-4944-a6fe-16368b75c6de".device = "/dev/disk/by-uuid/b84e6223-825f-4944-a6fe-16368b75c6de"; networking.hostName = "ymir"; # Define your hostname. - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; @@ -39,10 +37,6 @@ in { inherit config pkgs stateVersion; }; - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - # Enable networking networking.networkmanager.enable = true; @@ -154,13 +148,6 @@ in { acceleration = "cuda"; }; - # Some programs need SUID wrappers, can be configured further or are - # started in user sessions. - # programs.mtr.enable = true; - # programs.gnupg.agent = { - # enable = true; - # enableSSHSupport = true; - # }; boot.binfmt.emulatedSystems = ["aarch64-linux"]; nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;