nixdots/modules/home-manager/home.nix
2026-01-10 19:31:22 +03:00

19 lines
327 B
Nix

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