tv: firefoxWrapper -> firefox

This commit is contained in:
tv 2022-05-31 20:12:06 +02:00
parent dd7ef4034f
commit d389189efd
4 changed files with 30 additions and 30 deletions

View File

@ -15,9 +15,9 @@ with import <stockholm/lib>;
}; };
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = [
firefoxWrapper pkgs.firefox
networkmanagerapplet pkgs.networkmanagerapplet
(pkgs.pidgin-with-plugins.override { (pkgs.pidgin-with-plugins.override {
plugins = [ pkgs.pidginotr ]; plugins = [ pkgs.pidginotr ];
}) })

View File

@ -56,26 +56,26 @@ with import <stockholm/lib>;
${pkgs.kmod}/bin/modprobe -v iwlwifi ${pkgs.kmod}/bin/modprobe -v iwlwifi
''; '';
environment.systemPackages = with pkgs; [ environment.systemPackages = [
chromium pkgs.chromium
firefoxWrapper pkgs.firefox
gimp pkgs.gimp
iptables pkgs.iptables
libreoffice pkgs.libreoffice
plasma-pa pkgs.plasma-pa
(pkgs.pidgin-with-plugins.override { (pkgs.pidgin-with-plugins.override {
plugins = [ pkgs.pidginotr ]; plugins = [ pkgs.pidginotr ];
}) })
skype pkgs.skypeforlinux
slock pkgs.slock
tinc_pre pkgs.tinc_pre
vim pkgs.vim
xsane pkgs.xsane
#foomatic_filters #pkgs.foomatic_filters
#gutenprint #pkgs.gutenprint
#cups_pdf_filter #pkgs.cups_pdf_filter
#ghostscript #pkgs.ghostscript
]; ];

View File

@ -21,19 +21,19 @@ with import <stockholm/lib>;
systemd-boot.enable = true; systemd-boot.enable = true;
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = [
firefoxWrapper pkgs.firefox
gimp pkgs.gimp
kate pkgs.kate
libreoffice pkgs.libreoffice
(pkgs.pidgin-with-plugins.override { (pkgs.pidgin-with-plugins.override {
plugins = [ pkgs.pidginotr ]; plugins = [ pkgs.pidginotr ];
}) })
sxiv pkgs.sxiv
texlive.combined.scheme-full pkgs.texlive.combined.scheme-full
vim pkgs.vim
xsane pkgs.xsane
zathura pkgs.zathura
]; ];
fileSystems = { fileSystems = {

View File

@ -1,5 +1,5 @@
{ pkgs }: { pkgs }:
pkgs.writeDashBin "ff" '' pkgs.writeDashBin "ff" ''
exec ${pkgs.firefoxWrapper}/bin/firefox "$@" exec ${pkgs.firefox}/bin/firefox "$@"
'' ''