home fixup and polymouth
This commit is contained in:
parent
fa9ab71249
commit
b3ccd0de90
@ -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. It‘s perfectly fine and recommended to leave
|
||||
|
||||
@ -22,6 +22,8 @@
|
||||
|
||||
modrinth-app
|
||||
direnv
|
||||
emacs
|
||||
syncthing
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user