26 lines
556 B
Nix
26 lines
556 B
Nix
{ self, ... } : {
|
|
imports = [
|
|
"${self}/modules/system/boot/grub-efi.nix"
|
|
|
|
"${self}/modules/system/filesystem.nix"
|
|
"${self}/modules/system/experimental-features.nix"
|
|
"${self}/modules/system/unfree.nix"
|
|
|
|
"${self}/modules/system/localization.nix"
|
|
|
|
"${self}/modules/openssh.nix"
|
|
"${self}/modules/docker.nix"
|
|
"${self}/modules/vscode-server.nix"
|
|
|
|
./users.nix
|
|
./openssh-keys.nix
|
|
|
|
./firewall.nix
|
|
./wg-obfuscator.nix
|
|
./wg-quick.nix
|
|
./zabbix-agent.nix
|
|
./borg-backup.nix
|
|
|
|
./packages.nix
|
|
];
|
|
} |