refactor: explicitly allow unfree packages
This commit is contained in:
parent
4ac31540af
commit
5131641023
12 changed files with 64 additions and 7 deletions
|
@ -1,3 +1,5 @@
|
|||
{
|
||||
nixpkgs.allowedUnfreePackages = [ "open-webui" ];
|
||||
|
||||
flake.modules.nixos.pc.services.open-webui.enable = true;
|
||||
}
|
||||
|
|
9
modules2/hosts/t480/slack.nix
Normal file
9
modules2/hosts/t480/slack.nix
Normal 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 ];
|
||||
};
|
||||
}
|
9
modules2/hosts/t480/zoom.nix
Normal file
9
modules2/hosts/t480/zoom.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue