home fixup and polymouth

This commit is contained in:
k 2024-09-09 11:37:46 -04:00
parent fa9ab71249
commit b3ccd0de90
2 changed files with 30 additions and 4 deletions

View File

@ -8,6 +8,7 @@
time.timeZone = "America/New_York";
security.rtkit.enable = true;
powerManagement.enable = true;
virtualisation.waydroid.enable = true;
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
@ -93,10 +94,8 @@
packages = with pkgs; [ zsh ];
shell = pkgs.zsh;
};
home-manager = {
users = { "k" = import ./home.nix; };
};
home-manager = { users = { "k" = import ./home.nix; }; };
environment = {
sessionVariables = { MOZ_USE_XINPUT2 = "1"; };
@ -130,6 +129,31 @@
];
};
boot = {
plymouth = {
enable = true;
theme = "rings";
themePackages = with pkgs;
[
(adi1090x-plymouth-themes.override { selected_themes = [ "rings" ]; })
];
};
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
loader.timeout = 0;
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View File

@ -22,6 +22,8 @@
modrinth-app
direnv
emacs
syncthing
];
};