fprint: use 24.11 version of the magic repo

This commit is contained in:
Khaïs COLIN 2024-12-31 15:25:35 +01:00
parent 9fdc2687a0
commit b6a1f3d1b2
3 changed files with 12 additions and 11 deletions

14
flake.lock generated
View file

@ -477,11 +477,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1702831324, "lastModified": 1734692513,
"narHash": "sha256-bpDHKBDBcuMO14FFdBCEfsW26hzu2lby6xtfoU0jKW4=", "narHash": "sha256-3QEzFFrkXLj/JgZGoLaxq/pPkflSXfBOP10bXL8/Niw=",
"owner": "ahbnr", "owner": "ahbnr",
"repo": "nixos-06cb-009a-fingerprint-sensor", "repo": "nixos-06cb-009a-fingerprint-sensor",
"rev": "58a01fe62f5a71778bffaeb9929a118b4be0d222", "rev": "3678b193efa1e06aab86058aecee18ddaa8878d2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -492,16 +492,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1702645756, "lastModified": 1734323986,
"narHash": "sha256-qKI6OR3TYJYQB3Q8mAZ+DG4o/BR9ptcv9UnRV2hzljc=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "40c3c94c241286dd2243ea34d3aef8a488f9e4d0", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "id": "nixpkgs",
"ref": "nixos-23.11", "ref": "nixos-24.11",
"type": "indirect" "type": "indirect"
} }
}, },

View file

@ -104,8 +104,7 @@
stylix.nixosModules.stylix stylix.nixosModules.stylix
./stylix.nix ./stylix.nix
nixos-06cb-009a-fingerprint-sensor.nixosModules.open-fprintd nixos-06cb-009a-fingerprint-sensor.nixosModules."06cb-009a-fingerprint-sensor"
nixos-06cb-009a-fingerprint-sensor.nixosModules.python-validity
]; ];
specialArgs = { specialArgs = {
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system}; pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};

View file

@ -86,6 +86,8 @@
}; };
# fingerprint sensor setup # fingerprint sensor setup
services.open-fprintd.enable = true; services."06cb-009a-fingerprint-sensor" = {
services.python-validity.enable = true; enable = true;
backend = "python-validity";
};
} }