nixos-config/roles/server.nix

32 lines
432 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
2021-10-26 00:07:04 +03:00
inputs.base16.hmModule
2021-10-24 23:12:25 +03:00
applications
devices
2021-10-26 00:07:04 +03:00
fonts
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
2021-10-26 00:07:04 +03:00
themes
2021-10-24 23:12:25 +03:00
xdg
zsh
direnv
2021-10-26 00:07:04 +03:00
kitty
2021-10-25 23:20:08 +03:00
coturn
2021-10-26 04:02:01 +03:00
matrix-synapse
2021-10-25 23:20:08 +03:00
nginx
2021-02-07 02:38:11 +03:00
];
}