This commit is contained in:
Annika Merris 2024-05-27 12:37:47 -04:00
parent 1fe3baf4bc
commit f18854accf

View file

@ -17,6 +17,7 @@ inputs.nixpkgs.lib.nixosSystem {
../../modules/common
../../modules/nixos
{
home-manager.useGlobalPkgs = true;
# something with overlays, I don't get those yet.
# Hardware
@ -77,6 +78,17 @@ inputs.nixpkgs.lib.nixosSystem {
# Utilities
# git is not optional
yubikey.enable = true;
# TODO: Move this out
home-manager.users.${config.user} = {
home.programs = {
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
};
};
}
];
}