added plymouth.nix

This commit is contained in:
2025-06-09 22:37:29 +03:00
parent 790d749ff8
commit e9a2c270c5
7 changed files with 50 additions and 6 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
#options = [ "subvol=@nixos" ];
device = "none";
fsType = "tmpfs";
options = [ "defaults" "size=1G" "mode=755" ];
options = [ "defaults" "size=8G" "mode=755" ];
};
fileSystems."/nix" =
+6
View File
@@ -10,9 +10,15 @@
".local/share/AyuGramDesktop"
".local/share/PrismLauncher"
".local/share/Steam"
".local/share/bottles"
".local/share/backgrounds"
".config/dconf"
".config/Code"
".config/libreoffice"
".vscode"
".mozilla"
".local/state"
".wine"
# XDG User directories
"Downloads"
"Music"
+30
View File
@@ -0,0 +1,30 @@
{ pkgs, ... }: {
boot = {
plymouth = {
enable = true;
theme = "rings";
themePackages = with pkgs; [
# By default we would install all themes
(adi1090x-plymouth-themes.override {
selected_themes = [ "rings" ];
})
];
};
# Enable "Silent boot"
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
# Hide the OS choice for bootloaders.
# It's still possible to open the bootloader list by pressing any key
# It will just not appear on screen unless a key is pressed
};
}