adding jeeves

This commit is contained in:
2024-09-13 20:58:40 -04:00
parent ceaaa5dc2d
commit 1dff87b044
20 changed files with 852 additions and 16 deletions

View File

@@ -34,6 +34,11 @@
url = "github:RichieCahill/system_tools";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-cosmic = {
url = "github:lilyinstarlight/nixos-cosmic";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
@@ -41,6 +46,7 @@
nixpkgs,
home-manager,
systems,
nixos-cosmic,
...
} @ inputs: let
inherit (self) outputs;
@@ -65,6 +71,10 @@
modules = [./systems/bob];
specialArgs = {inherit inputs outputs;};
};
jeeves = lib.nixosSystem {
modules = [./systems/jeeves];
specialArgs = {inherit inputs outputs;};
};
};
};
}