aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configuration.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix
index ec51150..d181fd5 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -8,6 +8,7 @@
imports = [
./hardware-configuration.nix
./env.nix
+ ./nix.nix
./packages.nix
./users.nix
./zsh.nix
@@ -56,9 +57,12 @@
programs.ssh.startAgent = true;
- boot.loader = {
- systemd-boot.enable = true;
- efi.canTouchEfiVariables = true;
+ boot = {
+ kernelPackages = pkgs.linuxPackages_latest;
+ loader = {
+ systemd-boot.enable = true;
+ efi.canTouchEfiVariables = true;
+ };
};
system.stateVersion = "23.05";