nix/home-manager/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

2023-09-19 09:57:43 +09:00
{ lib, config, pkgs, inputs, hostname, platform, username, desktop, theme, hmStateVersion, ... }: {
2023-08-15 18:56:20 +09:00
imports = [
2023-09-19 11:21:34 +09:00
# Doom-Emacs input import
inputs.doom-emacs.hmModule
2023-08-31 20:55:14 +09:00
# Common configs
./common/software/cli
2023-08-23 14:30:15 +09:00
# User configs
./users/${username}
]
2023-09-15 12:03:35 +09:00
++ lib.optional (builtins.isString desktop) ./common/software/gui # GUI packages
2023-08-31 20:23:22 +09:00
++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop} # Machine-agnostic desktop configs
++ lib.optional (builtins.isString desktop) ./hosts/${hostname}/desktops/${desktop} # Machine-specific desktop configs
;
2023-09-19 11:26:09 +09:00
home = {
inherit username;
stateVersion = hmStateVersion;
homeDirectory = "/home/${username}";
sessionPath = [ "$HOME/.local/bin" ];
pointerCursor = {
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaLight;
name = "Catppuccin-Mocha-Light-Cursors";
size = 22;
};
};
2023-08-31 20:23:22 +09:00
2023-08-23 21:44:33 +09:00
nixpkgs = {
overlays = [
2023-08-31 20:22:44 +09:00
# Currently in use in the Firefox config
2023-08-23 21:44:33 +09:00
inputs.nur.overlay
];
};
}