2 Commits

Author SHA1 Message Date
Danilo Reyes
bc9c582cd0 disable stylix a bit
Some checks failed
Build on Push / build-configurations (push) Failing after 49m37s
2025-11-20 01:09:52 -06:00
Danilo Reyes
afb35b3abd push cache alias 2025-11-20 01:09:45 -06:00
2 changed files with 6 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ let
inherit (inputs.self.lib) mkEnabled enableList; inherit (inputs.self.lib) mkEnabled enableList;
in in
{ {
stylix.enable = true; # stylix.enable = true;
emacs.enable = true; emacs.enable = true;
enableContainers = true; enableContainers = true;
servers.drpp.enable = true; servers.drpp.enable = true;

View File

@@ -42,6 +42,11 @@ in
nix run nixpkgs#nixfmt-tree && \ nix run nixpkgs#nixfmt-tree && \
statix fix statix fix
''; '';
nix-push-cache = ''
nix build $NH_FLAKE#nixosConfigurations.${config.networking.hostName}.config.system.build.toplevel \
--print-out-paths --fallback --max-jobs 100 --cores 0 |
nix run nixpkgs#attic-client -- push lan:nixos --stdin
'';
}; };
}; };
} }