20 lines
391 B
Nix
20 lines
391 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
osConfig,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
./cli/default.nix
|
|
]
|
|
++ lib.optional config.tulg.desktop.enable ./desktop/default.nix;
|
|
tulg.desktop.enable = lib.mkDefault true;
|
|
# Home Manager settings
|
|
nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
|
home.username = "tulg";
|
|
home.homeDirectory = "/home/tulg";
|
|
home.stateVersion = "25.05";
|
|
}
|