refactor: explicitly allow unfree packages
All checks were successful
/ check (push) Successful in 1m53s
All checks were successful
/ check (push) Successful in 1m53s
This commit is contained in:
parent
4d470acfad
commit
99484c6194
12 changed files with 74 additions and 19 deletions
|
@ -1,3 +1,5 @@
|
|||
{
|
||||
nixpkgs.allowedUnfreePackages = [ "open-webui" ];
|
||||
|
||||
flake.modules.nixos.pc.services.open-webui.enable = true;
|
||||
}
|
||||
|
|
11
modules2/hosts/t480/slack.nix
Normal file
11
modules2/hosts/t480/slack.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.allowedUnfreePackages = [ "slack" ];
|
||||
|
||||
flake.modules.nixos."nixosConfigurations/t480" =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
users.users."${config.flake.meta.owner.username}".packages = [ pkgs.slack ];
|
||||
};
|
||||
}
|
11
modules2/hosts/t480/zoom.nix
Normal file
11
modules2/hosts/t480/zoom.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.allowedUnfreePackages = [ "zoom" ];
|
||||
|
||||
flake.modules.nixos."nixosConfigurations/t480" =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
users.users."${config.flake.meta.owner.username}".packages = [ pkgs.zoom-us ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue