96 lines
2.9 KiB
Nix
96 lines
2.9 KiB
Nix
{ inputs, lib, config, outputs, ... }:
|
|
let
|
|
# {{{ Imports
|
|
imports = [
|
|
# {{{ flake inputs
|
|
inputs.stylix.homeManagerModules.stylix
|
|
inputs.nur.nixosModules.nur
|
|
inputs.impermanence.nixosModules.home-manager.impermanence
|
|
inputs.spicetify-nix.homeManagerModules.spicetify
|
|
inputs.anyrun.homeManagerModules.default
|
|
inputs.nix-index-database.hmModules.nix-index
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
|
|
# {{{ self management
|
|
# NOTE: using `pkgs.system` before `module.options` is evaluated
|
|
# leads to infinite recursion!
|
|
inputs.intray.homeManagerModules.x86_64-linux.default
|
|
inputs.smos.homeManagerModules.x86_64-linux.default
|
|
# }}}
|
|
# }}}
|
|
# {{{ global configuration
|
|
./features/cli
|
|
./features/persistence.nix
|
|
../common
|
|
# }}}
|
|
];
|
|
# }}}
|
|
in
|
|
{
|
|
# Import all modules defined in modules/home-manager
|
|
imports = builtins.attrValues outputs.homeManagerModules ++ imports;
|
|
|
|
# {{{ Nixpkgs
|
|
nixpkgs = {
|
|
# Add all overlays defined in the overlays directory
|
|
overlays = builtins.attrValues outputs.overlays ++
|
|
lib.lists.optional
|
|
config.satellite.toggles.neovim-nightly.enable
|
|
inputs.neovim-nightly-overlay.overlay;
|
|
|
|
config.allowUnfree = true;
|
|
};
|
|
# }}}
|
|
# {{{ Enable the home-manager and git clis
|
|
programs = {
|
|
home-manager.enable = true;
|
|
git.enable = true;
|
|
};
|
|
# }}}
|
|
# {{{ Set reasonable defaults for some settings
|
|
home = {
|
|
username = lib.mkDefault "adrielus";
|
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
|
stateVersion = lib.mkDefault "23.05";
|
|
};
|
|
# }}}
|
|
# {{{ Ad-hoc settings
|
|
# Nicely reload system units when changing configs
|
|
systemd.user.startServices = lib.mkForce "sd-switch";
|
|
|
|
# Tell sops-nix to use ssh keys for decrypting secrets
|
|
sops.age.sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
|
|
|
|
# By default the paths given by sops contain annoying %r sections
|
|
sops.defaultSymlinkPath = "${config.home.homeDirectory}/.nix-sops";
|
|
|
|
# Allow root to read persistent files from this user.
|
|
home.persistence."/persist/home/adrielus".allowOther = true;
|
|
|
|
# {{{ Ad-hoc stylix targets
|
|
stylix.targets.xresources.enable = true;
|
|
# }}}
|
|
# }}}
|
|
# {{{ Xdg user directories
|
|
# Set the xdg env vars
|
|
xdg.enable = true;
|
|
|
|
xdg.userDirs = {
|
|
enable = lib.mkDefault true;
|
|
createDirectories = lib.mkDefault false;
|
|
|
|
desktop = null;
|
|
templates = null;
|
|
download = "${config.home.homeDirectory}/downloads";
|
|
publicShare = "${config.home.homeDirectory}/public";
|
|
music = "${config.home.homeDirectory}/media/music";
|
|
pictures = "${config.home.homeDirectory}/media/pictures";
|
|
videos = "${config.home.homeDirectory}/media/videos";
|
|
documents = "${config.home.homeDirectory}/media/documents";
|
|
|
|
extraConfig.XDG_SCREENSHOTS_DIR = "${config.xdg.userDirs.pictures}/screenshots";
|
|
extraConfig.XDG_PROJECTS_DIR = "${config.home.homeDirectory}/projects";
|
|
};
|
|
# }}}
|
|
}
|