From b3ccd0de906c337f4a40bc15832f06dde41e3877 Mon Sep 17 00:00:00 2001 From: k Date: Mon, 9 Sep 2024 11:37:46 -0400 Subject: [PATCH] home fixup and polymouth --- hosts/laptop/configuration.nix | 32 ++++++++++++++++++++++++++++---- hosts/laptop/home.nix | 2 ++ 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index f35c198..c45484e 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -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 diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index fa69f11..29ae08d 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -22,6 +22,8 @@ modrinth-app direnv + emacs + syncthing ]; };