initial flake commit

This commit is contained in:
stitchy 2023-08-06 01:44:35 +00:00
parent a7178d37d4
commit 848f4ebe93
Signed by: stitchy
SSH key fingerprint: SHA256:c/c0ZtbxK+xTeP1ixbrfL7QgB7WXN47u8k3OC8VvYqs

21
flake.nix Normal file
View file

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