apparently safe eyes makes sounds, I can't have that

This commit is contained in:
KoenDR06 2025-11-28 13:12:59 +01:00
parent 27c4701d7f
commit 77e1b8099d
3 changed files with 0 additions and 26 deletions

View file

@ -9,7 +9,6 @@
in {
imports = [
./firefox.nix
./safeeyes.nix
];
options = {

View file

@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.horseman.apps.visual.safeeyes;
in {
options = {
horseman.apps.visual.safeeyes = {
enable = mkEnableOption "Protects your eyes";
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
snixembed
safeeyes
];
};
}