mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
12 lines
232 B
Nix
12 lines
232 B
Nix
{ 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";
|
|
};
|
|
}
|