nixos-config/roles/hypervisor.nix
2024-01-21 20:36:53 +03:00

26 lines
391 B
Nix

{ inputs, pkgs, ... }: {
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
];
}