nixos-config/roles/hypervisor.nix
2022-12-10 22:34:39 +03:00

27 lines
471 B
Nix

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