formating

This commit is contained in:
Don Harper 2024-09-25 07:18:02 -05:00
parent bf58c91361
commit 47425ad6dd
5 changed files with 5 additions and 6 deletions

View file

@ -57,7 +57,6 @@
smaug = import ./hosts/smaug;
};
nixosConfigurations = {
# clients
ace = lib.nixosSystem {
@ -79,7 +78,7 @@
};
};
loki = lib.nixosSystem {
modules = [ ./hosts/loki ];
modules = [./hosts/loki];
specialArgs = {
inherit inputs outputs;
};

View file

@ -20,6 +20,6 @@
];
networking.hostName = "eve";
deployment = {
tags = [ "workstation" ];
tags = ["workstation"];
};
}

View file

@ -16,6 +16,6 @@
];
networking.hostName = "fred";
deployment = {
tags = [ "server" ];
tags = ["server"];
};
}

View file

@ -21,6 +21,6 @@
];
networking.hostName = "loki";
deployment = {
tags = [ "workstation" ];
tags = ["workstation"];
};
}

View file

@ -19,6 +19,6 @@
];
networking.hostName = "smaug";
deployment = {
tags = [ "workstation" ];
tags = ["workstation"];
};
}