nixos/profiles/webcam/default.nix

17 lines
316 B
Nix
Raw Normal View History

2023-03-19 22:40:58 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.webcam;
in
{
options.my.profiles.webcam = with lib; {
enable = mkEnableOption "webcam profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
fswebcam
# gnome.cheese does no longer work
];
};
}