Remove obsolete packages

This commit is contained in:
Fabian Hauser 2023-01-16 10:47:58 +01:00
parent 5fd7f09d00
commit d10ee2aeac
6 changed files with 6 additions and 51 deletions

View file

@ -37,31 +37,15 @@
sessionVariables = { NIXOS_OZONE_WL = "1"; };
packages = with pkgs;
[ # Networking
unison
transmission # GUI Tools, maybe extract...
] ++ [ # Desktop Environment Applications
google-chrome
chromium
#qutebrowser # TODO: Currently unused
synergy
#quicksynergy # Currently unused
nextcloud-client
owncloud-client
] ++ [ # office # TODO: Migrate to office.nix
# TODO: Build fails!
] ++ [ # office
libreoffice-fresh # TODO: Dictionaries, nixos/nixpkgs#14430
# pdfgrep
# pdftk
# calibre
tectonic
# texstudio
# pandoc
# system-config-printer
# cups-pk-helper
# cups-bjnp
# gutenprint
# gutenprintBin
# hplipWithPlugin
simple-scan
pkgs.gnome-online-accounts
gnome.gnome-control-center
@ -73,9 +57,6 @@
rdesktop
] ++ [ # Development
vscodium
gitlab-runner
docker-compose
vagrant
virt-manager
modemmanager # TODO: makes sense here?
modem-manager-gui

View file

@ -25,16 +25,4 @@ let
${pkgs.pass-wayland}/bin/pass show -c "$password" 2>/dev/null
'';
wsudo = with pkgs.xorg;
pkgs.writeScriptBin "wsudo" ''
#!/usr/bin/env bash
#small script to enable root access to x-windows system
${xhost}/bin/xhost +SI:localuser:root
sudo $1
#disable root access after application terminates
${xhost}/bin/xhost -SI:localuser:root
#print access status to allow verification that root access was remov
ed
${xhost}/bin/xhost
'';
in { home.packages = [ passbemenu wsudo ]; }
in { home.packages = [ passbemenu ]; }

View file

@ -11,16 +11,6 @@ let
threema-work = web-app "threema-work" "https://web-beta.threema.ch/";
threema-red = web-app "threema-red" "https://web-work-staging.threema.ch/";
threema-tickets = web-app "threema-tickets" "https://ticket.threema.ch/scp/";
netflix = web-app "netflix" "https://netflix.com/";
disneyplus = web-app "disneyplus" "https://disneyplus.com/";
in {
home.packages = [
whatsapp
netflix
disneyplus
threema
threema-work
threema-red
threema-tickets
];
home.packages = [ whatsapp threema threema-work threema-red threema-tickets ];
}