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"; time.timeZone = "America/New_York";
security.rtkit.enable = true; security.rtkit.enable = true;
powerManagement.enable = true; powerManagement.enable = true;
virtualisation.waydroid.enable = true;
nix = { nix = {
settings.experimental-features = [ "nix-command" "flakes" ]; settings.experimental-features = [ "nix-command" "flakes" ];
@ -94,9 +95,7 @@
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
home-manager = { home-manager = { users = { "k" = import ./home.nix; }; };
users = { "k" = import ./home.nix; };
};
environment = { environment = {
sessionVariables = { MOZ_USE_XINPUT2 = "1"; }; 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 # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave # on your system were taken. Its perfectly fine and recommended to leave

View File

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