nixos-config/roles/hypervisor.nix
2023-01-26 00:23:55 +03:00

30 lines
503 B
Nix

{ inputs, pkgs, ... }: {
imports = with inputs.self.customModules; with inputs.self.nixosProfiles; [
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
applications
devices
direnv
git
gpg
locale
misc
nix
nix-index
nnn
overlay
persist
secrets
secrets-envsubst
security
ssh
users
zsh
];
environment.systemPackages = [ pkgs.kitty ];
}