nix/home-manager/default.nix

35 lines
1,008 B
Nix
Raw Normal View History

2023-09-19 02:57:43 +02:00
{ lib, config, pkgs, inputs, hostname, platform, username, desktop, theme, hmStateVersion, ... }: {
2023-08-23 13:07:59 +02:00
2023-08-23 14:19:35 +02:00
home = {
inherit username;
2023-08-23 14:43:11 +02:00
stateVersion = hmStateVersion;
homeDirectory = "/home/${username}";
sessionPath = [ "$HOME/.local/bin" ];
pointerCursor = {
gtk.enable = true;
2023-08-27 14:54:05 +02:00
package = pkgs.catppuccin-cursors.mochaLight;
2023-08-27 14:56:59 +02:00
name = "Catppuccin-Mocha-Light-Cursors";
2023-08-27 14:54:05 +02:00
size = 22;
};
2023-08-23 14:19:35 +02:00
};
2023-08-15 11:56:20 +02:00
imports = [
2023-08-31 13:55:14 +02:00
# Common configs
./common/software/cli
2023-08-23 07:30:15 +02:00
# User configs
./users/${username}
]
2023-09-15 05:03:35 +02:00
++ lib.optional (builtins.isString desktop) ./common/software/gui # GUI packages
2023-08-31 13:23:22 +02: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-08-23 14:44:33 +02:00
nixpkgs = {
overlays = [
2023-08-31 13:22:44 +02:00
# Currently in use in the Firefox config
2023-08-23 14:44:33 +02:00
inputs.nur.overlay
];
};
}