nixos-config/roles/hypervisor.nix

26 lines
387 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ inputs, ... }: {
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
2024-11-18 03:14:13 +03:00
# pass-secret-service
2022-12-07 22:16:09 +03:00
ssh
user
vlock
2024-01-21 20:36:53 +03:00
vpn
2022-12-07 22:16:09 +03:00
zsh
];
}