nixos-config/home/default.nix
2024-02-07 19:05:44 +01:00

23 lines
332 B
Nix

{
lib,
self,
inputs,
...
}: {
imports = [
];
home = {
username = "xun";
homeDirectory = "/home/xun";
stateVersion = "23.11";
extraOutputsToInstall = ["doc" "devdoc"];
};
nixpkgs.config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
programs.home-manager.enable = true;
}