diff options
Diffstat (limited to 'modules/hosts/libreX60/configuration.nix')
-rw-r--r-- | modules/hosts/libreX60/configuration.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/hosts/libreX60/configuration.nix b/modules/hosts/libreX60/configuration.nix index 55f1774..9c83a42 100644 --- a/modules/hosts/libreX60/configuration.nix +++ b/modules/hosts/libreX60/configuration.nix @@ -2,23 +2,22 @@ imports = [ ./hardware-configuration.nix ./powertop-auto-tune.nix + ../../nixos/archetypes/tjkeller # Uncomment this module and reboot to enable bios flashing #./bios-flashing.nix ]; # Use grub - bootloader = { + boot._loader = { + enable = true; loader = "grub"; mode = "bios"; grub.biosDevice = "/dev/sda"; }; - # Use bootloader + # Use libre kernel boot.kernelPackages = pkgs.linuxPackages-libre; - # Enable network drives - nas.enable = true; - # i915 Gpu requires intel driver services.xserver.videoDrivers = [ "intel" ]; |