migrates dnsc-air

This commit is contained in:
Dennis Schoepf 2026-03-05 22:26:16 +01:00
parent 4e26d4b880
commit 25d3917db6
9 changed files with 142 additions and 2 deletions

View file

@ -1,11 +1,17 @@
{ config, pkgs, ... }:
{ config, ... }:
let
username = config.flake.globalConfig.username;
fullname = config.flake.globalConfig.fullname;
in
{
flake.modules.darwin.system =
flake.modules.darwin.base =
{ pkgs, ... }:
{
users.users.${username} = {
home = "/Users/${username}";
description = fullname;
};
system = {
primaryUser = username;
stateVersion = 5;