nix/home-manager/small.nix

31 lines
983 B
Nix
Raw Normal View History

2024-01-31 04:31:01 +01:00
{ lib, config, pkgs, inputs, hostname, system, username, desktop, theme, hmStateVersion, ... }: {
imports = [
# Common configs
./common/software/cli/bash.nix
./common/software/cli/git.nix
2024-02-08 13:24:36 +01:00
./common/software/cli/nixvim.nix
./common/software/cli/ssh.nix
2024-01-05 08:10:10 +01:00
./common/software/cli/btop.nix
# User configs
./users/${username}
]
++ lib.optional (builtins.isString desktop) ./common/software/gui # GUI packages
++ 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
;
home = {
inherit username;
stateVersion = hmStateVersion;
homeDirectory = "/home/${username}";
sessionPath = [ "$HOME/.local/bin" ];
};
nixpkgs = {
overlays = [
# Currently in use in the Firefox config
inputs.nur.overlay
];
};
2024-02-09 13:19:35 +01:00
}