nix/home-manager/default.nix

19 lines
No EOL
552 B
Nix

{ config, pkgs, hostname, username, desktop, hmStateVersion, ... }: {
imports = [
# Common app configs
./common/software/cli/bash.nix
./common/software/cli/btop.nix
./common/software/cli/git.nix
./common/software/cli/kitty.nix
./common/software/cli/neofetch.nix
./common/software/cli/neovim.nix
# User configs
./users/${username}
]
++ lib.optional (builtins.isString.desktop) [
./common/software/gui/firefox.nix
./common/software/gui/thunderbird.nix
./hosts/${hostname}/desktops/${desktop}
]
}