From 79ca1b4f855ce86823650e03ce21142c7b14b6e3 Mon Sep 17 00:00:00 2001 From: twoneis Date: Sun, 12 Nov 2023 16:25:37 +0100 Subject: [PATCH] added inputs for flake --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..ab90a3f --- /dev/null +++ b/flake.nix @@ -0,0 +1,14 @@ +{ + description = "Nix flake for my system configuration with nix and home-manager"; + + inputs = { + nixpkgs = { + url = "github:nixos/nixpkgs/unstable"; + }; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; +}