From 2e9a52f1a1a867a6b43f189db9e74cf336fb9b07 Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Tue, 7 May 2024 00:28:49 +0300 Subject: [PATCH] enable catppuccin globally --- flake.nix | 2 +- nixos/default.nix | 3 ++- nixos/laptop/default.nix | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index a8c148b..1161e63 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ inherit pkgs modules home-manager nid catppuccin; }; nixos = import ./nixos { - inherit system nixpkgs modules hosts; + inherit system nixpkgs modules hosts catppuccin; }; in { diff --git a/nixos/default.nix b/nixos/default.nix index 0e02961..e4fcefe 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -1,4 +1,4 @@ -{ system, nixpkgs, modules, hosts }: { +{ system, nixpkgs, modules, hosts, catppuccin, ... }: { laptop = nixpkgs.lib.nixosSystem { inherit system; modules = with modules.nixos; [ @@ -9,6 +9,7 @@ wireguard # nvidia hosts.nixosModule + catppuccin.nixosModules.catppuccin ]; }; } diff --git a/nixos/laptop/default.nix b/nixos/laptop/default.nix index ec9caf8..ff74978 100644 --- a/nixos/laptop/default.nix +++ b/nixos/laptop/default.nix @@ -150,4 +150,5 @@ pulse.enable = true; }; }; + catppuccin.enable = true; }