This commit is contained in:
Nio 2026-05-08 10:21:15 +02:00
parent 816b59e502
commit fd90e828b2
2 changed files with 19 additions and 0 deletions

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
description = "NixOS Konfiguration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
}