nix-dotfiles/modules/home-manager.nix
2025-03-17 16:10:17 -06:00

19 lines
305 B
Nix

{
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit inputs;
};
users.cobray = import ../home-manager/cobray.nix;
};
}