nixos-config/roles/hypervisor.nix
2024-02-08 23:30:40 +03:00

26 lines
385 B
Nix

{ inputs, ... }: {
imports = with inputs.self.customProfiles; [
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
direnv
git
gpg
hardware
locale
misc
nix
nix-index
nnn
overlay
pass-secret-service
ssh
user
vlock
vpn
zsh
];
}