nixos-config/roles/base.nix
2022-02-04 13:09:28 +03:00

30 lines
387 B
Nix

{ inputs, ... }: {
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
inputs.home-manager.nixosModules.home-manager
# MODULES
applications
secrets
secrets-envsubst
persist
bt-agent
# PROFILES
autoRun
xdg
boot
devices
git
gpg
locale
misc
network
nix
security
ssh
zsh
];
}