nixos/flipperzero: init

This commit is contained in:
Dominic Shelton
2023-02-19 18:55:13 +11:00
committed by pennae
parent d412d79567
commit 38593bc3c0
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.hardware.flipperzero;
in
{
options.hardware.flipperzero.enable = mkEnableOption (mdDoc "udev rules and software for Flipper Zero devices");
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.qFlipper ];
services.udev.packages = [ pkgs.qFlipper ];
};
}