Initial working config.

This commit is contained in:
2026-02-13 13:16:48 -06:00
commit f1c627e392
6 changed files with 323 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ inputs, lib, pkgs, self, ... }:
{
flake.nixosConfigurations.lily-desktop = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.nixosModules.lily-desktop
];
};
}