nixos-config/roles/hypervisor.nix

25 lines
383 B
Nix
Raw Normal View History

2022-12-07 22:16:09 +03:00
{ inputs, pkgs, ... }: {
2023-10-13 19:43:02 +03:00
imports = with inputs.self.customProfiles; [
2022-12-07 22:16:09 +03:00
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
2023-01-26 00:23:55 +03:00
direnv
2022-12-07 22:16:09 +03:00
git
gpg
2023-03-23 01:57:17 +03:00
hardware
2022-12-07 22:16:09 +03:00
locale
misc
nix
nix-index
2023-01-26 00:23:55 +03:00
nnn
2022-12-07 22:16:09 +03:00
overlay
pass-secret-service
2022-12-07 22:16:09 +03:00
ssh
user
vlock
2022-12-07 22:16:09 +03:00
zsh
];
}