nixos-config/roles/base.nix

30 lines
386 B
Nix

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