Add simple VM

This commit is contained in:
Bun 2025-03-24 02:55:47 -04:00
parent 0c78b13ceb
commit ad87c44701
8 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
stateVersion = lib.mkForce config.system.stateVersion;
};
}