nixos-config/profiles/base.nix

26 lines
307 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{ inputs, ... }: {
imports = with inputs.self.nixosModules; [
inputs.home-manager.nixosModules.home-manager
boot
secrets
secrets-envsubst
2021-06-11 15:52:11 +04:00
autoRun
xdg
2021-06-08 20:35:21 +04:00
devices
git
gpg
2021-01-21 22:13:53 +04:00
locale
2021-06-08 20:35:21 +04:00
misc
2021-01-21 22:13:53 +04:00
network
nix
2021-06-08 20:35:21 +04:00
overlay
persist
2021-01-21 22:13:53 +04:00
security
ssh
zsh
];
}