From 832dd708e8ed347c6ee78ec1d2d304ed7ecc1f14 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Wed, 4 Feb 2026 09:35:47 +0100 Subject: [PATCH] Added catppuccin home-manager module --- flake.nix | 3 ++- home/default.nix | 3 ++- lib/mksystem.nix | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index a400ee1..cd3b905 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,8 @@ nur inputs nixpkgs - home-manager; + home-manager + catppuccin; }; in { diff --git a/home/default.nix b/home/default.nix index a074b65..6d9ffc1 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,4 +1,4 @@ -{ currentSystemUser, currentSystemDe, pkgs, ... }: +{ currentSystemUser, currentSystemDe, pkgs, catppuccin, ... }: { imports = [ ./catppuccin.nix @@ -9,6 +9,7 @@ ./mangohud.nix ./tmux.nix ./zoxide.nix + catppuccin.homeModules.catppuccin ] ++ (if currentSystemDe == "hyprland" then [ ./hyprland ] else [] diff --git a/lib/mksystem.nix b/lib/mksystem.nix index 7b3c7ca..361ac40 100644 --- a/lib/mksystem.nix +++ b/lib/mksystem.nix @@ -7,6 +7,7 @@ inputs, nixpkgs, home-manager, + catppuccin, }: name: { @@ -41,6 +42,7 @@ let nur = nur; inputs = inputs; additionalModules = additionalModules; + catppuccin = catppuccin; }; in nixpkgs.lib.nixosSystem {