This commit is contained in:
Jakob Lechner 2025-05-07 00:51:00 +02:00
parent 9ead7f27d6
commit 82817c32ef
3 changed files with 9 additions and 1 deletions

View file

@ -2,7 +2,8 @@
{
nixpkgs.config.allowUnfreePredicate = pkg: lib.elem (lib.getName pkg) [
"unifi-controller"
"mongodb"
"roomeqwizard"
"unifi-controller"
];
}

View file

@ -31,6 +31,7 @@
./pomodoro.nix
./python.nix
./remarkable
./roomeqwizard.nix
./snapclient.nix
./sound
./sway

View file

@ -0,0 +1,6 @@
{ nixosConfig, lib, pkgs, ... }:
lib.mkIf nixosConfig.jalr.gui.enable {
home.packages = with pkgs; [
roomeqwizard
];
}