a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nushell: fix small eval issue, core make vm creation simple

karitham 8c33104c c19e7997

+2 -3
+1
modules/core.nix
··· 9 9 config = lib.mkIf (config.my.username != "root") { 10 10 users.users.${config.my.username} = { 11 11 home = "/home/${config.my.username}"; 12 + initialPassword = ""; 12 13 isNormalUser = true; 13 14 extraGroups = [ 14 15 "networkmanager"
+1 -3
modules/dev/shell/nushell.nix
··· 18 18 show_banner: false, 19 19 } 20 20 21 - if ("~/.profile.nu" | path exists) { 22 - source-env "~/.profile.nu" 23 - } 21 + source-env (if ("~/.profile.nu" | path exists) {"~/.profile.nu"} else null) 24 22 25 23 ${lib.meta.getExe pkgs.pokego} -l french 26 24 '';