1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

Implement package recommendations

This commit is contained in:
Kierán Meinhardt
2018-12-04 23:01:17 +01:00
parent bdeca861eb
commit 21e92412cf
3 changed files with 5 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ with pkgs;
htop
imagemagick
libnotify
libreoffice-fresh
# libreoffice
lsof
lxappearance
mpv
@@ -45,9 +45,7 @@ with pkgs;
wget
whois
xclip
xfce.ristretto
xfce.thunar
xfce.tumbler
sxiv
xorg.xbacklight
xorg.xcursorthemes
xorg.xkill
@@ -59,7 +57,7 @@ with pkgs;
programs.command-not-found.enable = true;
programs.java = {
enable = true;
package = pkgs.openjdk10;
package = pkgs.openjdk;
};
users.users.kfm.packages = [

View File

@@ -46,7 +46,7 @@ in {
name = "retiolum.hosts";
url = "https://lassul.us/retiolum.hosts";
# FIXME
sha256 = "0a0hk2z883i7jkgb7agiwdalpi1brqqjgdn9aw7x99gdl7jwkzc5";
sha256 = "1rqivqbf5p3sb92d8pzxk5ssq5rvrcgnfds2svs2dg845qd31sd6";
});
environment.systemPackages = [ config.services.tinc.networks.${netname}.package ];

View File

@@ -16,7 +16,7 @@ in {
options.defaultApplications = mapAttrs (const stringOption) {
terminal = "${pkgs.xterm}/bin/xterm";
browser = "${pkgs.chromium}/bin/chromium";
fileManager = "${pkgs.xfce.thunar}/bin/thunar";
fileManager = "${pkgs.xterm}/bin/xterm ${pkgs.ranger}/bin/ranger";
locker = "${pkgs.i3lock}/bin/i3lock -e -c ${strings.removePrefix "#" gray.dark}";
};