nix/home-manager/home.nix
iofq c9e64ce287
Some checks failed
/ nvim-bundle (nvim-min) (push) Failing after 57s
/ check (push) Successful in 2m30s
3/20
2026-03-20 01:23:28 -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;
}
'';
}