nixos-config/roles/base.nix

27 lines
437 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2021-09-15 23:17:00 +03:00
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
2021-11-05 21:45:11 +03:00
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
2021-02-07 02:38:11 +03:00
2021-06-16 05:30:04 +03:00
applications
# auto-run
2021-02-07 02:38:11 +03:00
boot
devices
git
gpg
locale
misc
network
nix
overlay
secrets
2021-06-16 23:42:44 +03:00
secrets-envsubst
2021-02-07 02:38:11 +03:00
security
ssh
2021-06-16 05:30:04 +03:00
xdg
2021-02-07 02:38:11 +03:00
zsh
];
}