initial empty flake
This commit is contained in:
parent
ebb332d3b5
commit
1dbc07fe40
1
configuration.nix
Normal file
1
configuration.nix
Normal file
@ -0,0 +1 @@
|
||||
# placeholder
|
19
flake.nix
Normal file
19
flake.nix
Normal 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
1
hardware/default.nix
Normal file
@ -0,0 +1 @@
|
||||
# placeholder
|
Loading…
x
Reference in New Issue
Block a user