2024-12-11 20:09:53 -07:00
|
|
|
{ lib, config, ... }:
|
2024-12-02 03:57:34 -07:00
|
|
|
{
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
home.username = "ty";
|
|
|
|
home.homeDirectory = "/home/ty";
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
./modules/packages.nix
|
2024-12-11 20:09:53 -07:00
|
|
|
(lib.mkIf config.hmOptions.plasma.enable ./modules/plasma.nix)
|
2024-12-02 03:57:34 -07:00
|
|
|
./modules/vcs
|
2024-12-11 20:09:53 -07:00
|
|
|
(lib.mkIf config.hmOptions.firefox.enable ./modules/firefox.nix)
|
|
|
|
(lib.mkIf config.hmOptions.thunderbird.enable ./modules/thunderbird.nix)
|
2024-12-02 03:57:34 -07:00
|
|
|
./modules/accounts
|
|
|
|
./modules/gpg.nix
|
|
|
|
./modules/shell
|
2024-12-11 20:09:53 -07:00
|
|
|
(lib.mkIf config.hmOptions.vscode.enable ./modules/vscode.nix)
|
|
|
|
(lib.mkIf config.hmOptions.plasma.enable ./modules/desktop.nix)
|
|
|
|
(lib.mkIf config.hmOptions.plasma.enable ./modules/gtk.nix)
|
|
|
|
(lib.mkIf config.hmOptions.beets.enable ./modules/beets.nix)
|
|
|
|
(lib.mkIf config.hmOptions.rescrobbled.enable ./modules/rescrobbled.nix)
|
2024-12-02 03:57:34 -07:00
|
|
|
];
|
|
|
|
}
|