This commit is contained in:
jackjohn7 2026-03-26 08:36:16 -05:00
parent c5a26648be
commit c44ae86ac1
9 changed files with 244 additions and 30 deletions

View file

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