nix-dotfiles/modules/home-manager.nix
2025-03-16 04:58:11 -06:00

14 lines
295 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;
};
}