nix-dotfiles/modules/home-manager.nix
2025-03-13 14:50:27 -06:00

16 lines
349 B
Nix

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