Files
haschel/configuration.nix
T
atridad 54f09695ea
Deploy NixOS / deploy (push) Successful in 31s
Remove calls from matrix for now.
2026-04-01 10:04:20 -06:00

29 lines
472 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./modules/boot.nix
./modules/networking.nix
./modules/locale.nix
./modules/users.nix
./modules/hardware.nix
./modules/services.nix
./modules/proxy.nix
./modules/fail2ban.nix
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
environment.systemPackages = with pkgs; [
git
gnumake
openssl
];
system.stateVersion = "25.11";
}