Made a new machine: Solis. It is the Latin word for sun, as it is my personal server.

This commit is contained in:
KoenDR06 2024-04-01 22:06:44 +02:00
parent adee460e81
commit 4fd8fb6e6f
7 changed files with 172 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{
r{
description = "Your new nix config";
inputs = {
@ -71,6 +71,12 @@
./machines/terra/configuration.nix
];
};
solis = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [
./machines/solis/configuration.nix
];
};
};
};
}