nix/home-manager/default.nix

19 lines
602 B
Nix
Raw Normal View History

2023-08-23 14:30:15 +09:00
{ config, pkgs, hostname, username, desktop, hmStateVersion, ... }: {
2023-08-15 18:56:20 +09:00
imports = [
2023-08-23 19:24:47 +09:00
# Common app configs - Will apply to all users managed by home-manager
2023-08-23 14:30:15 +09:00
./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}
]
2023-08-15 18:56:20 +09:00
}