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

View File

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

View File

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