nix/home-manager/home.nix

17 lines
314 B
Nix
Executable file

{
inputs,
attrs,
...
}: {
programs.home-manager.enable = true;
nix = {
registry.nixpkgs.flake = inputs.nixpkgs;
};
home = {
inherit (attrs) username;
stateVersion = "22.11";
homeDirectory = "/home/" + attrs.username;
};
imports = [./shared/programs/shell];
xdg.enable = true;
}