wip: host generation

This commit is contained in:
Leon Schwarzäugl 2026-04-01 12:19:56 +02:00
parent ff8dd91aef
commit f6d2ff1544
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 189 additions and 2 deletions

12
flake/den.nix Normal file
View file

@ -0,0 +1,12 @@
{ self, inputs, ... }:
let
inherit (self.outputs) lib;
in
{
imports = [ inputs.den.flakeModule ];
den = {
schema.user.classes = lib.mkDefault [ "homeManager" ];
default.homeManager.home.stateVersion = "23.05";
};
}