Compare commits

...
2 Commits
Author SHA1 Message Date
Zeusina e08e2f175d feat(kachu-laptop): add spicetify config 2026-07-11 20:23:32 +03:00
Zeusina f8001b050d feat(kachu-laptop): add plymouth config 2026-07-11 20:23:16 +03:00
2 changed files with 34 additions and 1 deletions
+2
View File
@@ -54,6 +54,8 @@
inputs.lanzaboote.nixosModules.lanzaboote
./hosts/kachu-laptop/hardware-configuration.nix
./hosts/kachu-laptop/configuration.nix
./shared/programs/spicetify.nix
inputs.spicetify-nix.nixosModules.default
];
};
};
+32 -1
View File
@@ -26,6 +26,33 @@
pkiBundle = "/var/lib/sbctl";
};
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 0;
boot.plymouth = {
enable = true;
theme = "bgrt";
};
boot.kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
"nvidia-drm.fbdev=1"
];
boot.consoleLogLevel = 0;
boot.initrd.verbose = false;
boot.initrd.kernelModules = [
"nvidia"
"nvidia_modeset"
"nvidia_uvm"
"nvidia_drm"
"amdgpu"
];
# Use latest kernel.
boot.kernelPackages = pkgs.linuxPackages_latest;
@@ -89,7 +116,10 @@
users.users.kachu = {
isNormalUser = true;
extraGroups = ["wheel"]; # Enable sudo for the user.
extraGroups = [
"wheel"
"networkmanager"
]; # Enable sudo for the user.
packages = with pkgs; [
tree
git
@@ -119,6 +149,7 @@
kdePackages.kio-fuse
kdePackages.kio-extras
sbctl
sddm-astronaut-theme
];
programs.fuse.enable = true;