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; [
firefoxWrapper
networkmanagerapplet
environment.systemPackages = [
pkgs.firefox
pkgs.networkmanagerapplet
(pkgs.pidgin-with-plugins.override {
plugins = [ pkgs.pidginotr ];
})

View File

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

View File

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

View File

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