diff options
author | Adrian Kummerlaender | 2021-03-18 23:16:56 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2021-03-18 23:16:56 +0100 |
commit | c9714aadf661acac2925be923fe46101e20a245f (patch) | |
tree | 4bee14d1abf3dc98cb18b780b42150306766b652 /gui | |
parent | 06e88cb46bb1ebd10f528620a0dc67a4cfc4bd8f (diff) | |
download | nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar.gz nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar.bz2 nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar.lz nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar.xz nixos_home-c9714aadf661acac2925be923fe46101e20a245f.tar.zst nixos_home-c9714aadf661acac2925be923fe46101e20a245f.zip |
Change default application set
Diffstat (limited to 'gui')
-rw-r--r-- | gui/apps/dev.nix | 3 | ||||
-rw-r--r-- | gui/apps/file.nix | 14 | ||||
-rw-r--r-- | gui/apps/web.nix | 3 | ||||
-rw-r--r-- | gui/conf/xmonad.hs | 3 |
4 files changed, 6 insertions, 17 deletions
diff --git a/gui/apps/dev.nix b/gui/apps/dev.nix index 3b58313..93ceebd 100644 --- a/gui/apps/dev.nix +++ b/gui/apps/dev.nix @@ -4,12 +4,9 @@ home = { packages = with pkgs; [ # UI dev utilities (language environments are maintained in project specific nix-shells) - zeal hotspot kcachegrind paraview - # version control - gitg meld # language utilities artha diff --git a/gui/apps/file.nix b/gui/apps/file.nix index 21ba684..a000a83 100644 --- a/gui/apps/file.nix +++ b/gui/apps/file.nix @@ -5,14 +5,10 @@ packages = let custom-sxiv = pkgs.callPackage ../pkgs/sxiv.nix { }; in with pkgs; [ - # browser pcmanfm - nnn file - xfce.gigolo # automounting gvfs lxmenu-data shared_mime_info - # tools - veracrypt + xfce.gigolo # viewers bat evince @@ -25,14 +21,10 @@ ]; sessionVariables = { - # required to enable auto-mounting in pcmanfm + # required to enable auto-mounting in pcmanfm GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ]; - # use GTK theme in libreoffice + # use GTK theme in libreoffice SAL_USE_VCLPLUGIN = "gtk"; - # NNN: display folders in bright green - NNN_CONTEXT_COLORS = "2222"; - # NNN: open all text files in $EDITOR - NNN_USE_EDITOR = 1; }; file.".config/user-dirs.dirs".text = '' diff --git a/gui/apps/web.nix b/gui/apps/web.nix index 7c102f0..59937c8 100644 --- a/gui/apps/web.nix +++ b/gui/apps/web.nix @@ -4,8 +4,10 @@ home = { packages = (with pkgs; [ tdesktop + tigervnc ]) ++ (with pkgs-unstable; [ zotero + teams ]); }; @@ -15,6 +17,7 @@ }; programs.firefox.enable = true; + programs.chromium.enable = true; services.syncthing.enable = true; } diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index 674d957..44b074b 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -108,8 +108,6 @@ scratchpads host = (customFloating $ hideScreenBorder host dropDown) , NS "browser" "env MOZ_USE_XINPUT2=1 firefox --no-remote -P scratchpad --class scratchfire" (className =? "scratchfire") (customFloating $ hideScreenBorder host dropDownLarge) - , NS "documentation" "zeal" (className =? "Zeal") - (customFloating $ hideScreenBorder host dropDown) , NS "thesaurus" "artha" (className =? "Artha") (customFloating $ hideScreenBorder host sideBarLeft) , NS "literature" "zotero" (className =? "Zotero") @@ -200,7 +198,6 @@ commonKeybindings host = -- scratchpads , ("M-b" , namedScratchpadAction (scratchpads host) "browser") - , ("M-d" , namedScratchpadAction (scratchpads host) "documentation") , ("M-t" , namedScratchpadAction (scratchpads host) "thesaurus") , ("M-z" , namedScratchpadAction (scratchpads host) "literature") , ("M-r" , namedScratchpadAction (scratchpads host) "calculator") |