Rebase to flake parts #3

This commit is contained in:
2026-05-01 17:19:42 -03:00
parent 32df2c3573
commit 2c576715de
6 changed files with 83 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
{ self, inputs, ... }: {
flake.nixosConfigurations.nix-server = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit self inputs;
host = "nix-server";
system = "x86_64-linux";
};
modules = [
self.nixosModules.nix-serverConfiguration
];
};
}