Files
My_NixOS_Config/home-manager/core/user.nix

16 lines
195 B
Nix

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