diff options
-rw-r--r-- | hosts/shinji.nix | 4 | ||||
-rw-r--r-- | modules/system.nix | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/hosts/shinji.nix b/hosts/shinji.nix index 4f6df81..220d72a 100644 --- a/hosts/shinji.nix +++ b/hosts/shinji.nix @@ -16,6 +16,10 @@ inputs.nixpkgs.lib.nixosSystem { scale = 1.25; }; + # hardware + hardware.graphics.enable = true; + hardware.bluetooth.enable = true; + # bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; diff --git a/modules/system.nix b/modules/system.nix index 25e1944..8aa02f3 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -25,6 +25,9 @@ wget ]; + # use the latest kernel + boot.kernelPackages = pkgs.linuxPackages_latest; + # timezone time.timeZone = "Americia/New_York"; |