nixos-config/roles/hypervisor.nix

30 lines
503 B
Nix
Raw Normal View History

2022-12-07 22:16:09 +03:00
{ inputs, pkgs, ... }: {
2023-01-26 00:09:21 +03:00
imports = with inputs.self.customModules; with inputs.self.nixosProfiles; [
2022-12-07 22:16:09 +03:00
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
applications
devices
2023-01-26 00:23:55 +03:00
direnv
2022-12-07 22:16:09 +03:00
git
gpg
locale
misc
nix
nix-index
2023-01-26 00:23:55 +03:00
nnn
2022-12-07 22:16:09 +03:00
overlay
2023-01-26 00:23:55 +03:00
persist
2022-12-07 22:16:09 +03:00
secrets
secrets-envsubst
security
ssh
2022-12-10 22:34:39 +03:00
users
2022-12-07 22:16:09 +03:00
zsh
];
environment.systemPackages = [ pkgs.kitty ];
}