summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authormtgmonkey <mtgmonkey@nixos>2025-12-04 16:31:03 +0100
committermtgmonkey <mtgmonkey@nixos>2025-12-04 16:31:03 +0100
commita72d3b02198412dd514dd81f703ff618c980eb52 (patch)
tree370bed4f94dae8191a6acc47d1b80fab889ce9dd /flake.nix
init
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..6e93c4c
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,13 @@
+{
+ inputs = {
+ nixpkgs.url = "nixpkgs/nixpkgs-unstable";
+ };
+ outputs = {nixpkgs, ...}: let
+ system = "x86_64-linux";
+ pkgs = nixpkgs.legacyPackages.${system};
+ in {
+ packages.${system} = {
+ default = pkgs.callPackage ./package.nix {};
+ };
+ };
+}