Files
nix-flake/home/jam/home.nix
2026-01-28 11:41:51 +03:00

12 lines
187 B
Nix

{ ... } : {
programs.home-manager.enable = true;
home = {
username = "jam";
homeDirectory = "/home/jam";
stateVersion = "25.05";
};
imports = [
./index.nix
];
}