nix/home-manager/home.nix
iofq e06cc202a8
Some checks failed
/ check (push) Has been cancelled
3/20
2026-03-20 01:13:25 -05:00

17 lines
335 B
Nix
Executable file

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