Files
My_NixOS_Config/home-manager/core/user.nix
T
2026-01-13 12:55:27 +00:00

16 lines
195 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
home = {
username = "cianh";
homeDirectory = "/home/cianh";
shell.enableNushellIntegration = true;
};
}