Commit 49eaf258b829
Changed files (6)
systems
systems/common/base/default.nix
@@ -20,7 +20,7 @@
networking = {
hostName = hostname;
- useDHCP = lib.mkDefault true;
+ # useDHCP = lib.mkDefault true;
};
environment.systemPackages = with pkgs; [
systems/common/desktop/default.nix
@@ -14,17 +14,17 @@
# ../virt
];
# Enable Plymouth and surpress some logs by default.
- boot = {
- initrd.systemd.enable = true;
- plymouth.enable = true;
- kernelParams = [
- # The 'splash' arg is included by the plymouth option
- "quiet"
- "loglevel=3"
- "rd.udev.log_priority=3"
- "vt.global_cursor_default=0"
- ];
- };
+ # boot = {
+ # # initrd.systemd.enable = true;
+ # plymouth.enable = true;
+ # kernelParams = [
+ # # The 'splash' arg is included by the plymouth option
+ # "quiet"
+ # "loglevel=3"
+ # "rd.udev.log_priority=3"
+ # "vt.global_cursor_default=0"
+ # ];
+ # };
hardware.graphics.enable = true;
systems/kyushu/boot.nix
@@ -10,7 +10,7 @@
# pkiBundle = "/etc/secureboot";
# };
- initrd = { };
+ # initrd = { };
# extraModprobeConfig = ''
# options snd_hda_intel power_save=1
systems/kyushu/extra.nix
@@ -3,11 +3,11 @@
imports = [
# ../common/services/backup
- ../common/hardware/laptop.nix
- ../common/programs/direnv.nix
- ../common/programs/git.nix
- ../common/programs/tmux.nix
- ../common/services/networkmanager.nix
+ # ../common/hardware/laptop.nix
+ # ../common/programs/direnv.nix
+ # ../common/programs/git.nix
+ # ../common/programs/tmux.nix
+ # ../common/services/networkmanager.nix
];
}
systems/kyushu/hardware.nix
@@ -6,8 +6,8 @@
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x1-12th-gen
- ../common/hardware/acpid.nix
- ../common/hardware/bluetooth.nix
+ # ../common/hardware/acpid.nix
+ # ../common/hardware/bluetooth.nix
];
hardware = {
systems/default.nix
@@ -17,8 +17,8 @@
./common/base
./common/users
]
- ++ lib.optional (builtins.pathExists (./. + "/${hostname}/extra.nix")) ./${hostname}/extra.nix
- ++ lib.optional (builtins.isString desktop) ./common/desktop;
+ ++ lib.optional (builtins.pathExists (./. + "/${hostname}/extra.nix")) ./${hostname}/extra.nix;
+ # ++ lib.optional (builtins.isString desktop) ./common/desktop;
nixpkgs = {
overlays = [