Add another host for work laptop

This commit is contained in:
2024-03-01 09:44:34 +01:00
parent fb09434e89
commit 59a0227a66
3 changed files with 96 additions and 4 deletions

View File

@@ -15,10 +15,17 @@
user = "torjus";
in
{
nixosConfigurations.prismo = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs self user; };
modules = [ ./hosts/prismo ];
nixosConfigurations = {
prismo = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs self user; };
modules = [ ./hosts/prismo ];
};
magicman = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs self user; };
modules = [ ./hosts/magicman ];
};
};
};
}