begin work on other system configs

This commit is contained in:
2024-12-02 10:42:05 -06:00
parent 9cf417eb9e
commit c2e2c4c2f6
5 changed files with 144 additions and 153 deletions

View File

@@ -42,7 +42,7 @@
outputs = {nixpkgs, ...} @ inputs:
{
nixosConfigurations.homebox = nixpkgs.lib.nixosSystem {
nixosConfigurations.homebox = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
@@ -50,5 +50,14 @@
];
};
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./system-config/configuration/laptop
];
};
};
}