aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 85f0eb6..b59f294 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,10 +2,13 @@
description = "Nix utilities to manage keyboard firmware";
inputs = {
- nixpkgs.url = "github:nixos/nixpkgs";
+ nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
- treefmt-nix.url = "github:numtide/treefmt-nix";
+ treefmt-nix = {
+ url = "github:numtide/treefmt-nix";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
};
outputs = inputs@{self, ... }: inputs.flake-parts.lib.mkFlake { inherit inputs self; } {
@@ -18,7 +21,7 @@
imports = [
inputs.treefmt-nix.flakeModule
./modules
- ./keyboards
+ ./devices
];
perSystem = { pkgs, config, system, ... }: {