nixos-config/roles/base.nix
2022-12-07 22:05:00 +03:00

25 lines
414 B
Nix

{ inputs, ... }: {
imports = with inputs.self.nixosModules; 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
secrets
secrets-envsubst
security
ssh
zsh
];
}