Compare commits

...

2 commits

Author SHA1 Message Date
04d40c5bbd fix(x1): Use latest kernel packages for x1 system
Switched to using the latest kernel packages for the x1 system by removing the comment from the kernelPackages line and setting it to lib.mkOverride 0 pkgs.linuxPackages_latest. This ensures the system uses the most recent kernel modules and features while maintaining consistency with other configuration changes. The change aligns with recent system updates and package management improvements.
2025-12-03 16:33:40 +01:00
8fba80933c enable nix-index and disable command-not-found
- Enable nix-index program to provide package search functionality
- Disable command-not-found as nix-index handles missing command suggestions instead
- Maintains consistency with recent nix configuration improvements
2025-12-03 16:33:40 +01:00
2 changed files with 3 additions and 1 deletions

View file

@ -52,6 +52,8 @@ in
];
#systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp";
programs.nix-index.enable = true;
programs.command-not-found.enable = false; # nix-index handles it instead
nix =
let

View file

@ -25,7 +25,7 @@
"sd_mod"
];
initrd.kernelModules = [ ];
#kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
kernelModules = [
"kvm-intel"
"amdgpu"