wip: broken, still working on it'

This commit is contained in:
2025-10-31 17:07:59 -04:00
parent 8fd3ca8c9a
commit 717e8c452d
14 changed files with 113 additions and 38 deletions

View File

@@ -1,11 +1,9 @@
{ pkgs, lib, role, ... }:
{
pkgs,
lib,
...
}: {
imports = [
./common.nix
./darwin.nix
./linux.nix
];
}
imports =
[ ./common.nix ]
++ lib.optional pkgs.stdenv.isDarwin ./darwin.nix
++ lib.optional pkgs.stdenv.isLinux ./linux.nix
++ lib.optional (role == "workstation") ./workstation.nix
++ lib.optional (role == "server") ./server.nix;
}