updated common and install

This commit is contained in:
2026-03-29 09:12:30 -05:00
parent 30f5105cf4
commit 2986bba31b
3 changed files with 30 additions and 28 deletions

View File

@@ -17,10 +17,12 @@ in
services.gnome.gnome-initial-setup.enable = false;
environment.gnome.excludePackages = with pkgs; [ gnome-tour gnome-user-docs ];
# Allow free user to run installer commands as root without a password
security.sudo.wheelNeedsPassword = false;
users.users.free = {
isNormalUser = true;
description = "free";
extraGroups = [ "networkmanager" ];
extraGroups = [ "networkmanager" "wheel" ];
initialPassword = "free";
};
@@ -48,11 +50,11 @@ in
environment.etc."sovran/flake".source = sovranSource;
environment.etc."xdg/autostart/sovran-installer.desktop".text = ''
[Desktop Entry]
Type=Application
Name=Sovran Guided Installer
Exec=gnome-terminal -- bash -c "${installer}/bin/sovran-install; exec bash"
Terminal=false
X-GNOME-Autostart-enabled=true
'';
[Desktop Entry]
Type=Application
Name=Sovran Guided Installer
Exec=gnome-terminal -- bash -c "${installer}/bin/sovran-install; exec bash"
Terminal=false
X-GNOME-Autostart-enabled=true
'';
}