This commit is contained in:
jackjohn7 2026-03-26 01:30:09 -05:00
commit c5a26648be
13 changed files with 1211 additions and 0 deletions

View file

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