nixos-config/roles/base.nix

24 lines
344 B
Nix
Raw Normal View History

2021-02-07 02:38:11 +03:00
{ inputs, ... }: {
2023-10-13 19:43:02 +03:00
imports = with inputs.self.customProfiles; [
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
boot
git
gpg
locale
misc
network
nix
2023-01-26 00:23:55 +03:00
nnn
2021-02-07 02:38:11 +03:00
overlay
user
2021-02-07 02:38:11 +03:00
ssh
vlock
2024-01-21 19:29:36 +03:00
vpn
2021-02-07 02:38:11 +03:00
zsh
];
}