nixos-config/roles/base.nix
Dmitriy Kholkin e965d93842
Some checks failed
Build ISO / build (push) Has been cancelled
huge cleanup and refactoring
2024-01-21 19:29:36 +03:00

24 lines
344 B
Nix

{ inputs, ... }: {
imports = with inputs.self.customProfiles; [
inputs.home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
boot
git
gpg
locale
misc
network
nix
nnn
overlay
user
ssh
vlock
vpn
zsh
];
}