Files
nixy/hosts/server/configuration.nix
T
Hadi f56bf4402c stirlingpdf -> bentopdf
Signed-off-by: Hadi <hadi@example.fr>
2026-08-17 15:18:37 +02:00

39 lines
1020 B
Nix

{config, ...}: {
imports = [
# NixOS module
../../nixos/home-manager.nix
../../nixos/nix.nix
../../nixos/systemd-boot.nix
../../nixos/users.nix
../../nixos/utils.nix
../../nixos/amd-graphics.nix
# NixOS server modules
../../server-modules/ssh.nix
../../server-modules/firewall.nix
../../server-modules/cloudflared.nix
../../server-modules/glance
../../server-modules/adguardhome.nix
../../server-modules/arr.nix
../../server-modules/blog.nix
../../server-modules/bentopdf.nix
../../server-modules/cyberchef.nix
../../server-modules/mazanoke.nix
../../server-modules/kernel-hardening.nix
../../server-modules/fail2ban.nix
../../server-modules/default-creds.nix
../../server-modules/gitea.nix
# You should let those lines as is
./hardware-configuration.nix
./variables.nix
./secrets
];
home-manager.users."${config.var.username}" = import ./home.nix;
# Don't touch this
system.stateVersion = "26.05";
}