1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
This commit is contained in:
Kierán Meinhardt
2019-02-26 23:25:30 +01:00
parent 6ebc0e2ed2
commit 55d82d80a6
2 changed files with 3 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ in with pkgs;
] ++ [ # internet
aria2
chromium
unstable.brave
firefox
tor-browser-bundle-bin
thunderbird

View File

@@ -2,6 +2,7 @@
with lib;
with import ./theme.nix;
let
unstable = import <nixos-unstable> {};
stringOption = def: mkOption { type = types.string; default = def; };
themeOption = def: mkOption {
type = types.submodule {
@@ -15,7 +16,7 @@ let
in {
options.defaultApplications = mapAttrs (const stringOption) rec {
terminal = "${pkgs.rxvt_unicode-with-plugins}/bin/urxvtc";
browser = "${pkgs.chromium}/bin/chromium";
browser = "${unstable.brave}/bin/brave";
fileManager = "${terminal} -e ${pkgs.ranger}/bin/ranger";
# locker = "${pkgs.i3lock}/bin/i3lock -u -c ${strings.removePrefix "#" colorScheme.background}";
locker = "${pkgs.lightlocker}/bin/light-locker-command -l";