completely ripping off fufexan in hopes of fixing things
This commit is contained in:
36
home/cnst.nix
Normal file
36
home/cnst.nix
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
self,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
# inputs.matugen.nixosModules.default
|
||||
# inputs.nix-index-db.hmModules.nix-index
|
||||
# inputs.tailray.homeManagerModules.default
|
||||
# self.nixosModules.theme
|
||||
];
|
||||
|
||||
home = {
|
||||
username = "cnst";
|
||||
homeDirectory = "/home/cnst";
|
||||
stateVersion = "23.11";
|
||||
extraOutputsToInstall = ["doc" "devdoc"];
|
||||
};
|
||||
|
||||
# disable manuals as nmd fails to build often
|
||||
manual = {
|
||||
html.enable = false;
|
||||
json.enable = false;
|
||||
manpages.enable = false;
|
||||
};
|
||||
|
||||
# let HM manage itself when in standalone mode
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
lib = prev.lib // {colors = import "${self}/lib/colors" lib;};
|
||||
})
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user