initial flake commit

This commit is contained in:
stitchy 2023-08-06 01:44:35 +00:00
parent 3207ddaa0a
commit 985b5e8f39

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
];
};
};
};
}