Compare commits

...

2 Commits

Author SHA1 Message Date
1771fba57b
server: gitea: enable fail2ban 2023-06-04 09:55:48 +02:00
0b88c894ed
desktop: add superslicer 2023-06-04 09:55:28 +02:00
3 changed files with 8 additions and 3 deletions

View File

@ -74,8 +74,12 @@
TERMINAL = "alacritty"; TERMINAL = "alacritty";
EDITOR = "nvim"; EDITOR = "nvim";
VISUAL = "nvim"; VISUAL = "nvim";
};
etc = { etc = {
"etc/fail2ban/filter.d/gitea.conf".source = ../modules/services/server/fail2ban/filter/gitea.conf; "fail2ban/filter.d/gitea.conf" = {
source = ../modules/services/server/fail2ban/filter/gitea.conf;
mode = "0444";
};
}; };
systemPackages = with pkgs; [ # Default packages install system-wide systemPackages = with pkgs; [ # Default packages install system-wide
vim vim
@ -121,7 +125,6 @@
findtime = 3600 findtime = 3600
bantime = 900 bantime = 900
action = iptables-allports action = iptables-allports
filter = gitea
''; '';
}; };
}; };

View File

@ -153,6 +153,7 @@
# #
# Flatpak # Flatpak
#obs-studio # Recording/Live Streaming #obs-studio # Recording/Live Streaming
super-slicer-latest
]; ];
file.".config/wall".source = ../modules/themes/wall.jpg; file.".config/wall".source = ../modules/themes/wall.jpg;
file.".config/lockwall".source = ../modules/themes/lockwall.jpg; file.".config/lockwall".source = ../modules/themes/lockwall.jpg;

View File

@ -27,4 +27,5 @@ in
}; };
}; };
users.users.root.initialPassword = "babablup"; users.users.root.initialPassword = "babablup";
system.stateVersion = "23.11";
} }