mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-07 07:09:15 +00:00
tungsten: copy config from vanadium
This commit is contained in:
parent
f41d27ebff
commit
b17c3d9251
21 changed files with 1568 additions and 0 deletions
23
nix/configurations/tungsten/nixos/unfree-predicate.nix
Normal file
23
nix/configurations/tungsten/nixos/unfree-predicate.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{lib, ...}: {
|
||||
nixpkgs.config.allowUnfreePredicate = lib.mkDefault (
|
||||
pkg: let
|
||||
name = lib.getName pkg;
|
||||
in
|
||||
builtins.elem name [
|
||||
"languagetool"
|
||||
|
||||
"vscode"
|
||||
"code"
|
||||
|
||||
"tampermonkey"
|
||||
|
||||
"aseprite"
|
||||
]
|
||||
|| builtins.any (lib.flip lib.hasInfix name) [
|
||||
# Scanner
|
||||
"brscan5"
|
||||
|
||||
"steam"
|
||||
]
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue