From dc5678ae3379538531b8790fcc5d4d0c5d444e91 Mon Sep 17 00:00:00 2001 From: yaroslav Date: Mon, 9 Jun 2025 23:10:18 +0300 Subject: [PATCH] update flake for Ratchet --- flake.nix | 14 ++++++++++++-- hosts/generic/plymouth.nix | 6 ++---- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 8c5d86f..241f576 100644 --- a/flake.nix +++ b/flake.nix @@ -27,11 +27,21 @@ ./hosts/generic/users.nix ./hosts/Ratchet/hardware-Ratchet.nix ./hosts/generic/persistence.nix + ./desktop/kde.nix + ./hosts/generic/unfree_allow.nix + ./hosts/generic/virtualization.nix + ./hosts/generic/zapret.nix + ./hosts/generic/plymouth.nix home-manager.nixosModules.home-manager { - home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; - home-manager.users.yaroslav = import ./home/yaroslav/home.nix; + home-manager.users.yaroslav = { + imports = [ + ./home/yaroslav/home.nix + ./home/yaroslav/home_gui.nix + ./home/yaroslav/steam.nix + ]; + }; } ]; }; diff --git a/hosts/generic/plymouth.nix b/hosts/generic/plymouth.nix index a597ee0..071ac61 100644 --- a/hosts/generic/plymouth.nix +++ b/hosts/generic/plymouth.nix @@ -3,12 +3,10 @@ plymouth = { enable = true; - theme = "rings"; + theme = "nixos-bgrt"; themePackages = with pkgs; [ # By default we would install all themes - (adi1090x-plymouth-themes.override { - selected_themes = [ "rings" ]; - }) + nixos-bgrt-plymouth ]; };