apps/run-workflow-with-vm: update configuration

This commit is contained in:
Gabriel Arazas 2024-03-15 17:31:16 +08:00
parent ef69085e0d
commit 738c7a5004
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 5 additions and 4 deletions

View File

@ -12,6 +12,7 @@ import <nixpkgs/nixos/lib/eval-config.nix> {
inherit lib;
specialArgs = {
foodogsquaredUtils = import <config/lib/utils/nixos.nix> { inherit lib; };
foodogsquaredModulesPath = builtins.toString <config/modules/nixos>;
};
modules = [
# You can include an extra set by setting `extra-config` as part of the
@ -31,8 +32,8 @@ import <nixpkgs/nixos/lib/eval-config.nix> {
({ config, lib, pkgs, foodogsquaredUtils, ... }: {
imports = [
(foodogsquaredUtils.mapHomeManagerUser "alice" {
password = "";
extraGroups = [ "wheel" ];
initialHashedPassword = "";
extraGroups = [ "wheel" "networkmanager" "video" ];
description = "There is no password";
isNormalUser = true;
createHome = true;

View File

@ -8,7 +8,7 @@
stdenv.mkDerivation {
pname = "run-workflow-with-vm";
version = "2024-01-05";
version = "2024-03-15";
src = ./.;

View File

@ -1,5 +1,5 @@
project('run-workflow-with-vm',
version: '2024-01-05',
version: '2024-03-15',
license: 'GPL-3.0-or-later',
meson_version: '>=0.54.0',
)