diff options
| author | Chris Wells <chris@mathematicaster.org> | 2025-10-21 10:38:26 -0500 |
|---|---|---|
| committer | Chris Wells <chris@mathematicaster.org> | 2025-10-21 10:38:26 -0500 |
| commit | 7aa390883104725c64c65d20a0713cfcd654f637 (patch) | |
| tree | a3a33e5423e9136ad064b48aee0e41966329c1f0 /flake.nix | |
| parent | e3343bc80dc54416d4e8ee6a60a8e92b630810de (diff) | |
| download | fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.gz fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.bz2 fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.lz fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.xz fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.tar.zst fw-manager-7aa390883104725c64c65d20a0713cfcd654f637.zip | |
More correct dfu-util flash script + rearranged personal devices
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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, ... }: { |
