refactor: explicitly allow unfree packages

This commit is contained in:
Oliver Davies 2025-07-28 23:36:48 +01:00
parent 4ac31540af
commit 5131641023
12 changed files with 64 additions and 7 deletions

View file

@ -1,3 +1,5 @@
{
nixpkgs.allowedUnfreePackages = [ "open-webui" ];
flake.modules.nixos.pc.services.open-webui.enable = true;
}

View file

@ -0,0 +1,9 @@
{
flake.modules.nixos."nixosConfigurations/t480" =
{ config, pkgs, ... }:
{
nixpkgs.allowedUnfreePackages = [ "slack" ];
users.users."${config.flake.meta.owner.username}".packages = [ pkgs.slack ];
};
}

View file

@ -0,0 +1,9 @@
{
flake.modules.nixos."nixosConfigurations/t480" =
{ config, pkgs, ... }:
{
nixpkgs.allowedUnfreePackages = [ "zoom-us" ];
users.users."${config.flake.meta.owner.username}".packages = [ pkgs.zoom-us ];
};
}