From a661ec8e15326c347bf985c4fd30be7b2ad9423a Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Tue, 27 May 2025 10:42:38 +0200 Subject: snapshot: Di 27. Mai 10:42:38 CEST 2025 --- flake.lock | 37 ++++++++++++++++++++++++++++++++++++- flake.nix | 1 + srv/hadante/configuration.nix | 7 ++++--- srv/hadante/fuzzel.nix | 4 +--- 4 files changed, 42 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 67f68df..45308d0 100644 --- a/flake.lock +++ b/flake.lock @@ -21,6 +21,24 @@ "type": "github" } }, + "catppuccin": { + "inputs": { + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1748080874, + "narHash": "sha256-sUebEzAkrY8Aq5G0GHFyRddmRNGP/a2iTtV7ISNvi/c=", + "owner": "catppuccin", + "repo": "nix", + "rev": "0ba11b12be81f0849a89ed17ab635164ea8f0112", + "type": "github" + }, + "original": { + "owner": "catppuccin", + "repo": "nix", + "type": "github" + } + }, "crane": { "locked": { "lastModified": 1731098351, @@ -314,6 +332,22 @@ } }, "nixpkgs_2": { + "locked": { + "lastModified": 1744463964, + "narHash": "sha256-LWqduOgLHCFxiTNYi3Uj5Lgz0SR+Xhw3kr/3Xd0GPTM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "2631b0b7abcea6e640ce31cd78ea58910d31e650", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_3": { "locked": { "lastModified": 1747744144, "narHash": "sha256-W7lqHp0qZiENCDwUZ5EX/lNhxjMdNapFnbErcbnP11Q=", @@ -359,13 +393,14 @@ "root": { "inputs": { "agenix": "agenix", + "catppuccin": "catppuccin", "customss": "customss", "disko": "disko", "flake-utils": "flake-utils_2", "home-manager": "home-manager_2", "lanzaboote": "lanzaboote", "nix-index-database": "nix-index-database", - "nixpkgs": "nixpkgs_2" + "nixpkgs": "nixpkgs_3" } }, "rust-overlay": { diff --git a/flake.nix b/flake.nix index d8a4031..cdedfa0 100644 --- a/flake.nix +++ b/flake.nix @@ -16,6 +16,7 @@ # Optional but recommended to limit the size of your system closure. inputs.nixpkgs.follows = "nixpkgs"; }; + catppuccin.url = "github:catppuccin/nix"; disko = { url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix index 392c26f..4e9ab26 100644 --- a/srv/hadante/configuration.nix +++ b/srv/hadante/configuration.nix @@ -181,9 +181,10 @@ in }; home-manager.users.${config.user} = { - programs.kitty = { - enable = true; - }; + imports = [ + inputs.catppuccin.homeModules.catppuccin + ]; + home.file = let javas = { diff --git a/srv/hadante/fuzzel.nix b/srv/hadante/fuzzel.nix index 8b23e15..3cd438b 100644 --- a/srv/hadante/fuzzel.nix +++ b/srv/hadante/fuzzel.nix @@ -2,15 +2,13 @@ { home-manager.users.${config.user} = { programs.fuzzel.enable = true; + catppuccin.fuzzel.enable = true; programs.fuzzel.settings = { main = { font = "ComicShannsMono Nerd Font"; use-bold = true; fields = "name,categories"; }; - colors = { - background = "80232634"; - }; }; }; } -- cgit