nixos-config/roles/base.nix

27 lines
437 B
Nix

{ inputs, ... }: {
imports = with inputs.self.customModules; with inputs.self.nixosProfiles; [
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
applications
boot
devices
git
gpg
locale
misc
network
nix
overlay
persist
secrets
secrets-envsubst
security
ssh
users
zsh
];
}