nix/home-manager/default.nix

36 lines
974 B
Nix
Raw Normal View History

2024-07-15 13:39:14 +02:00
{ lib, inputs, hostname, username, desktop, hmStateVersion, system, ... }: {
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}
2024-02-14 05:36:45 +01:00
# Theming
inputs.stylix.homeManagerModules.stylix
2024-03-18 03:45:39 +01:00
../stylix
2024-04-28 14:48:11 +02:00
# Secrets
inputs.sops-nix.homeManagerModules.sops
2023-08-23 07:30:15 +02:00
]
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-09-19 04:26:09 +02:00
2024-04-25 15:05:10 +02:00
news.display = "silent";
2023-09-19 04:26:09 +02:00
home = {
inherit username;
stateVersion = hmStateVersion;
homeDirectory = "/home/${username}";
sessionPath = [ "$HOME/.local/bin" ];
};
2023-08-31 13:23:22 +02:00
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
];
};
}