nixos-config/roles/base.nix

28 lines
445 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2023-01-26 00:09:21 +03:00
imports = with inputs.self.customModules; 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
2021-02-07 02:38:11 +03:00
boot
devices
git
gpg
locale
misc
network
nix
2023-01-26 00:23:55 +03:00
nnn
2021-02-07 02:38:11 +03:00
overlay
2022-12-14 23:46:25 +03:00
persist
2021-02-07 02:38:11 +03:00
secrets
2021-06-16 23:42:44 +03:00
secrets-envsubst
2021-02-07 02:38:11 +03:00
security
ssh
2022-12-10 22:34:39 +03:00
users
2021-02-07 02:38:11 +03:00
zsh
];
}