All this just to get nyx to even build

This commit is contained in:
blahai 2025-01-12 18:35:44 +02:00
parent ed1aafe645
commit fdfd4e0434
No known key found for this signature in database
24 changed files with 2272 additions and 0 deletions

5
modules/base/default.nix Normal file
View file

@ -0,0 +1,5 @@
{
imports = [
./nix
];
}

View file

@ -0,0 +1,5 @@
{
imports = [
./system.nix
];
}

View file

@ -0,0 +1,11 @@
{
lib,
pkgs,
...
}: let
inherit (lib.modules) mkDefault;
in {
system = {
stateVersion = mkDefault "25.05";
};
}