nix/home-manager/default.nix

19 lines
608 B
Nix
Raw Normal View History

2023-08-23 12:50:02 +02:00
{ lib, config, pkgs, hostname, username, desktop, hmStateVersion, ... }: {
2023-08-15 11:56:20 +02:00
imports = [
2023-08-23 12:24:47 +02:00
# Common app configs - Will apply to all users managed by home-manager
2023-08-23 07:30:15 +02: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-23 12:49:37 +02:00
];
2023-08-15 11:56:20 +02:00
}