Add Tablet

This commit is contained in:
Bun 2025-03-16 00:30:10 -04:00
parent 380393b423
commit fa8299ee29
11 changed files with 150 additions and 1 deletions

View file

@ -0,0 +1,4 @@
{ ... }:
{
imports = [ ./main ];
}

View file

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