Skip to content

Commit

Permalink
nixos.base: disable cachix-agent for desktops
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerschtli committed Sep 8, 2024
1 parent c4f3d28 commit e197b48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 1 addition & 5 deletions nixos/base/general.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ in

console.keyMap = "de";

custom = {
cachix-agent.enable = true;

system.firewall.enable = true;
};
custom.system.firewall.enable = true;

environment = {
defaultPackages = [ ];
Expand Down
6 changes: 5 additions & 1 deletion nixos/base/server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ in

config = mkIf cfg.enable {

custom.services.openssh.enable = true;
custom = {
cachix-agent.enable = true;

services.openssh.enable = true;
};

networking = mkIf (cfg.ipv6Address != null) {
defaultGateway6 = {
Expand Down

0 comments on commit e197b48

Please sign in to comment.