diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-05-27 10:42:38 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-05-27 10:42:38 +0200 |
| commit | a661ec8e15326c347bf985c4fd30be7b2ad9423a (patch) | |
| tree | 8f7c2e99caaba820da3f1efed37bed34213057e0 | |
| parent | b714afb87ad6e0b4e94a9991e9e28a0fb1d931fb (diff) | |
| download | nix-infra-a661ec8e15326c347bf985c4fd30be7b2ad9423a.tar.gz nix-infra-a661ec8e15326c347bf985c4fd30be7b2ad9423a.tar.bz2 nix-infra-a661ec8e15326c347bf985c4fd30be7b2ad9423a.zip | |
snapshot: Di 27. Mai 10:42:38 CEST 2025
| -rw-r--r-- | flake.lock | 37 | ||||
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | srv/hadante/configuration.nix | 7 | ||||
| -rw-r--r-- | srv/hadante/fuzzel.nix | 4 |
4 files changed, 42 insertions, 7 deletions
@@ -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, @@ -315,6 +333,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=", "owner": "NixOS", @@ -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": { @@ -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"; - }; }; }; } |
