summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/boot.nix8
-rw-r--r--modules/hyprland.nix2
2 files changed, 4 insertions, 6 deletions
diff --git a/modules/boot.nix b/modules/boot.nix
index aba7a41..dab324a 100644
--- a/modules/boot.nix
+++ b/modules/boot.nix
@@ -14,12 +14,10 @@
supportedFilesystems = [ "ntfs" ];
initrd.kernelModules = [ "amdgpu" "kvm-amd" ];
kernelParams = [
- # "video=DP-1:2560x1440@240"
+ "video=DP-1:2560x1440@240"
"quiet"
];
- kernelPackages = pkgs.linuxPackages_cachyos-lto-znver4;
- # kernelPackages = pkgs.linuxPackages_cachyos-lto.cachyOverride { mArch = "ZEN4"; };
- # kernelPackages = pkgs.linuxPackages_zen;
- # kernelPackages = pkgs.linuxPackages_6_12;
+ # kernelPackages = pkgs.linuxPackages_cachyos-lto-znver4;
+ kernelPackages = pkgs.linuxPackages_latest;
};
}
diff --git a/modules/hyprland.nix b/modules/hyprland.nix
index f3e35fa..471f696 100644
--- a/modules/hyprland.nix
+++ b/modules/hyprland.nix
@@ -2,6 +2,6 @@
{
programs.hyprland = {
enable = true;
- package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
+ # package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
};
}