diff options
author | sils <sils@sils.li> | 2023-05-04 18:45:27 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-05-04 18:45:27 +0200 |
commit | bfe2a79eb23cbc4528f11980289aa67739936764 (patch) | |
tree | d975192f951fc5d47824ab1fc8f254fb816c86c3 /sys | |
parent | Feat(users/sils/gpg): Add gpg (diff) | |
download | nix-config-bfe2a79eb23cbc4528f11980289aa67739936764.tar.gz nix-config-bfe2a79eb23cbc4528f11980289aa67739936764.zip |
Feat(sys/packages): Remove unfree programs
Diffstat (limited to 'sys')
-rw-r--r-- | sys/packages/default.nix | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/packages/default.nix b/sys/packages/default.nix index db97b9b..b63c3a3 100644 --- a/sys/packages/default.nix +++ b/sys/packages/default.nix @@ -25,7 +25,6 @@ firefox # my browser librewolf # privacy friendly firefox ungoogled-chromium # the only chromium-based browser I'd ever use. - google-chrome # breaking promises element-desktop # chat libreoffice # convert doc to pdf xD pdfarranger # gui for pdf arranging @@ -81,7 +80,6 @@ texlive.combined.scheme-full # LaTeX gparted # partitioning :( musescore # notesetting program - geogebra # math program # Compiler gcc execline @@ -92,9 +90,4 @@ bottles # run windows software ]; - nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "geogebra" - "google-chrome" - ]; } |