nixos-config/roles/server.nix

26 lines
344 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2021-10-24 23:12:25 +03:00
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
inputs.home-manager.nixosModules.home-manager
applications
devices
git
gpg
2021-10-24 23:12:25 +03:00
locale
misc
2021-10-25 23:13:24 +03:00
network
2021-10-24 23:12:25 +03:00
nix
overlay
secrets
secrets-envsubst
security
ssh
xdg
zsh
direnv
2021-10-25 23:20:08 +03:00
nginx
2021-02-07 02:38:11 +03:00
];
}