aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2025-10-08 13:16:08 -0500
committerChris Wells <chris@mathematicaster.org>2025-10-08 13:16:08 -0500
commit93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad (patch)
tree915ed2fcca320422d9f5c41ffd684b0a5201411c /flake.nix
downloadfw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar.gz
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar.bz2
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar.lz
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar.xz
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.tar.zst
fw-manager-93a6c43ae005b39cce3b33a1dddf0e50ca5e06ad.zip
Started writing modules
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..739f1cf
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,13 @@
+{
+ description = "Nix utilities to manage keyboard firmware";
+
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs";
+ flake-parts.url = "github:hercules-ci/flake-parts";
+ systems.url = "github:nix-systems/default";
+ };
+
+ outputs = inputs@{self, ... }: inputs.flake-parts.mkFlake { inherit inputs self; } {
+ systems = import inputs.systems;
+ };
+}