initial empty flake

This commit is contained in:
Nicole Dresselhaus 2025-06-10 21:09:01 +02:00
parent ebb332d3b5
commit 1dbc07fe40
3 changed files with 21 additions and 0 deletions

1
configuration.nix Normal file
View File

@ -0,0 +1 @@
# placeholder

19
flake.nix Normal file
View File

@ -0,0 +1,19 @@
{
description = "NAS on NixOS root on ZFS";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-25.05";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
nixosConfigurations.host = pkgs.lib.nixosSystem {
inherit system;
modules = [
./hardware
./configuration
];
};
};
}

1
hardware/default.nix Normal file
View File

@ -0,0 +1 @@
# placeholder