nixdots/modules/home-manager/home.nix
2026-02-28 18:16:24 +03:00

20 lines
341 B
Nix

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