Added Guard for Server Configuration; Builds are all successfull

This commit is contained in:
2026-04-10 21:32:38 +02:00
parent 90c1396ea5
commit 46fb7622e9
6 changed files with 115 additions and 111 deletions

19
nixos/catppuccin.nix Normal file
View File

@@ -0,0 +1,19 @@
{ inputs, ... }:
{
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
catppuccin = {
enable = true;
accent = "sky";
flavor = "mocha";
cache.enable = true;
cursors = {
enable = true;
accent = "sapphire";
};
fcitx5.enable = false;
forgejo.enable = false;
gitea.enable = false;
sddm.enable = false;
};
}