diff options
-rw-r--r-- | util/liveiso/common.nix | 5 | ||||
-rw-r--r-- | util/liveiso/description.md | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/util/liveiso/common.nix b/util/liveiso/common.nix index fefbe8156b..881c5b84e2 100644 --- a/util/liveiso/common.nix +++ b/util/liveiso/common.nix @@ -93,12 +93,14 @@ user = { isNormalUser = true; group = "user"; - extraGroups = [ "users" "wheel" "networkmanager" "uucp" ]; + extraGroups = [ "users" "wheel" "networkmanager" "uucp" "flashrom" ]; initialHashedPassword = ""; }; }; }; + programs.flashrom.enable = true; + environment.systemPackages = with pkgs; [ acpica-tools btrfs-progs @@ -116,7 +118,6 @@ efivar exfat f2fs-tools - flashrom fuse fuse3 fwts diff --git a/util/liveiso/description.md b/util/liveiso/description.md index a9e2eb8b87..b056a9f313 100644 --- a/util/liveiso/description.md +++ b/util/liveiso/description.md @@ -5,8 +5,6 @@ NixOS configuration files for testing purposes and for working on firmware. ## TODO -- Use programs.flashrom.enable (#128205) and add `user` to `flashrom` group. - Will be usable from the next NixOS release. - Generate customized bootloader configs; FILO is WIP - Add coreboot toolchain - Switch to `programs.neovim` when the module is fixed. |