diff --git a/installer.nix b/installer.nix index 32667b5..fe0e0bd 100644 --- a/installer.nix +++ b/installer.nix @@ -82,11 +82,12 @@ users.users.root = { home = "/home/nixos"; createHome = true; shell = pkgs.bashInteractive; - shellInit = '' + + }; + environment.etc."skel/.bashrc".text = '' if [ -n "$PS1" ] && [ ! -e ~/.auto_install_ran ]; then sudo /etc/auto-install.sh touch ~/.auto_install_ran fi ''; - }; }