[live-usb] Clean up config

Also switched from trying to override the `nixos` user to instead just
installing home-manager _into_ the `nixos` user. It felt a bit like
fighting the tide otherwise.
This commit is contained in:
2025-07-29 15:29:48 -07:00
parent 8b676203e7
commit 14b7de30f6
2 changed files with 10 additions and 12 deletions

View File

@@ -11,9 +11,12 @@
roles = {
audio.enable = true;
bluetooth.enable = true;
users = {
desktop = {
enable = true;
extraGroups = [ "video" "wheel" "networkmanager" ];
kde = true;
x11 = true;
wayland = true;
sddm = true;
};
};
@@ -72,15 +75,6 @@
};
};
# Override default nixos user, set johno as the main user with password
users.users.nixos.enable = false;
users.users.johno = {
isNormalUser = true;
description = "John Ogle";
extraGroups = [ "wheel" "networkmanager" "audio" "video" ];
password = "nixos"; # Simple password for live environment
};
# ISO customization
isoImage = {
volumeID = "NIXOS-LIVE";