nixos-config/roles/base.nix

24 lines
345 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2021-09-15 23:17:00 +03:00
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
2021-02-07 02:38:11 +03:00
inputs.home-manager.nixosModules.home-manager
2021-06-16 05:30:04 +03:00
applications
# auto-run
2021-02-07 02:38:11 +03:00
boot
devices
git
gpg
locale
misc
network
nix
overlay
secrets
2021-06-16 23:42:44 +03:00
secrets-envsubst
2021-02-07 02:38:11 +03:00
security
ssh
2021-06-16 05:30:04 +03:00
xdg
2021-02-07 02:38:11 +03:00
zsh
];
}