apps/run-workflow-with-vm: update to 2024-05-17

This commit is contained in:
Gabriel Arazas 2024-05-17 20:48:07 +08:00
parent 77d988cc7c
commit b53c6f7dfb
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
4 changed files with 8 additions and 7 deletions

View File

@ -22,9 +22,10 @@ It is expected that the extra configuration folder is structured similarly to th
[source, tree] [source, tree]
---- ----
./extra-config-stuff ./extra-config-stuff
├── home-manager └── modules
├── nixvim ├── home-manager
└── nixos ├── nixvim
└── nixos
---- ----
Once you have an folder containing those extra snippets, you can simply include them like so. Once you have an folder containing those extra snippets, you can simply include them like so.

View File

@ -54,7 +54,7 @@ import <nixpkgs/nixos/lib/eval-config.nix> {
home-manager.useGlobalPkgs = lib.mkDefault true; home-manager.useGlobalPkgs = lib.mkDefault true;
home-manager.sharedModules = [ home-manager.sharedModules = [
# Same with home-manager modules. # Same with home-manager modules.
<extra-config/modules/nixos> <extra-config/modules/home-manager>
<config/modules/home-manager> <config/modules/home-manager>
<config/modules/home-manager/_private> <config/modules/home-manager/_private>
@ -67,7 +67,7 @@ import <nixpkgs/nixos/lib/eval-config.nix> {
]; ];
# The main function of the configuration. # The main function of the configuration.
workflows.workflows.${workflow}.enable = true; workflows.enable = [ workflow ];
system.stateVersion = "23.11"; system.stateVersion = "23.11";
}; };

View File

@ -9,7 +9,7 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "run-workflow-with-vm"; pname = "run-workflow-with-vm";
version = "2024-05-10"; version = "2024-05-17";
src = ./.; src = ./.;

View File

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