nixos-config/roles/hypervisor.nix

26 lines
461 B
Nix
Raw Normal View History

2022-12-07 22:16:09 +03:00
{ 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
zsh
];
environment.systemPackages = [ pkgs.kitty ];
}