summaryrefslogtreecommitdiff
path: root/modules/boot.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-11-17 17:23:32 +0100
committeradikro <adikro@disroot.org>2025-11-17 17:23:32 +0100
commit18651b7c572145497f05874126346a5f6af0dd60 (patch)
tree2efcd69c823b5343903c9aea837e50b63380dc3b /modules/boot.nix
parentc0ef19bd513388546a71bee352fe39ef3626b457 (diff)
added follows nixpkgs, added noctalia shell and waybar as flakes
Diffstat (limited to 'modules/boot.nix')
-rw-r--r--modules/boot.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/boot.nix b/modules/boot.nix
index 8d51b03..2d8f78a 100644
--- a/modules/boot.nix
+++ b/modules/boot.nix
@@ -1,18 +1,22 @@
{ pkgs, ... }:
-
{
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
+ editor = false;
+ configurationLimit = 10;
};
+ timeout = 0;
};
supportedFilesystems = [ "ntfs" ];
initrd.kernelModules = [ "amdgpu" "kvm-amd" ];
kernelParams = [
"video=DP-1:2560x1440@240"
+ "quiet"
+ "nvme"
];
kernelPackages = pkgs.linuxPackages_cachyos-rc.cachyOverride { mArch = "ZEN4"; };
};