aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-05-05 16:29:07 +0200
committerAdrian Kummerlaender2018-05-05 16:29:07 +0200
commitb27c5cf38b5cef5731b5be8ba41e3fa7cb0df293 (patch)
tree4cf395f59dadd09abf4e0d13398aa8bbb63fd124
parentdadd30ae95c473a8614751f8bf41b26667140f1a (diff)
downloadnixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar.gz
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar.bz2
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar.lz
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar.xz
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.tar.zst
nixos_home-b27c5cf38b5cef5731b5be8ba41e3fa7cb0df293.zip
Group applications by purpose
-rw-r--r--gui/apps/dev.nix14
-rw-r--r--gui/apps/file.nix32
-rw-r--r--gui/apps/web.nix17
-rw-r--r--gui/default.nix46
-rw-r--r--gui/kitty.nix41
-rw-r--r--gui/pcmanfm.nix17
-rw-r--r--gui/terminal.nix (renamed from gui/urxvt.nix)41
-rw-r--r--gui/xmonad.nix5
-rw-r--r--gui/zathura.nix26
9 files changed, 113 insertions, 126 deletions
diff --git a/gui/apps/dev.nix b/gui/apps/dev.nix
new file mode 100644
index 0000000..2d7397c
--- /dev/null
+++ b/gui/apps/dev.nix
@@ -0,0 +1,14 @@
+{ pkgs, ... }:
+
+{
+ home = {
+ packages = with pkgs; [
+ # UI dev utilities (language environments are maintained in project specific nix-shells)
+ zeal
+ hotspot
+ qcachegrind
+ gitg
+ paraview
+ ];
+ };
+}
diff --git a/gui/apps/file.nix b/gui/apps/file.nix
new file mode 100644
index 0000000..d366621
--- /dev/null
+++ b/gui/apps/file.nix
@@ -0,0 +1,32 @@
+{ pkgs, ... }:
+
+{
+ home = {
+ packages = with pkgs; [
+ # browser
+ pcmanfm
+ # automounting
+ gvfs lxmenu-data shared_mime_info
+ # tools
+ veracrypt
+ # viewers
+ evince
+ sxiv
+ mpv
+ libreoffice
+ ];
+
+ sessionVariables = {
+ # required to enable auto-mounting in pcmanfm
+ GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
+ # use GTK theme in libreoffice
+ SAL_USE_VCLPLUGIN = "gtk";
+ };
+
+ file.".config/user-dirs.dirs".text = ''
+ XDG_TEMPLATES_DIR="$HOME/"
+ XDG_DESKTOP_DIR="$HOME/"
+ XDG_DOWNLOADS_DIR="$HOME/downloads/"
+ '';
+ };
+}
diff --git a/gui/apps/web.nix b/gui/apps/web.nix
new file mode 100644
index 0000000..157fbeb
--- /dev/null
+++ b/gui/apps/web.nix
@@ -0,0 +1,17 @@
+{ pkgs, ... }:
+
+{
+ home = {
+ packages = with pkgs; [
+ thunderbird
+ tdesktop
+ ];
+ };
+
+ programs.firefox = {
+ enable = true;
+ enableAdobeFlash = true;
+ };
+
+ services.syncthing.enable = true;
+}
diff --git a/gui/default.nix b/gui/default.nix
index d83b10f..72a1590 100644
--- a/gui/default.nix
+++ b/gui/default.nix
@@ -1,49 +1,13 @@
{ pkgs, ... }:
{
- home = {
- packages = with pkgs; [
- # file viewers
- sxiv
- mpv
- paraview
- libreoffice
- # communication
- thunderbird
- tdesktop
- # UI dev utilities (CLI utilities are added in project specific nix-shells)
- zeal
- hotspot
- qcachegrind
- gitg
- ];
-
- file.".config/user-dirs.dirs".text = ''
- XDG_TEMPLATES_DIR="$HOME/"
- XDG_DESKTOP_DIR="$HOME/"
- XDG_DOWNLOADS_DIR="$HOME/downloads/"
- '';
- };
-
imports = [
- # desktop environment
./xmonad.nix
- ./rofi.nix
- ./gtk.nix
- # terminals
- ./kitty.nix
- ./urxvt.nix
- # tools
+ ./terminal.nix
./vim.nix
- ./pcmanfm.nix
- # file viewers
- ./zathura.nix
+ # applications grouped by purpose
+ ./apps/file.nix
+ ./apps/web.nix
+ ./apps/dev.nix
];
-
- services.syncthing.enable = true;
-
- programs.firefox = {
- enable = true;
- enableAdobeFlash = true;
- };
}
diff --git a/gui/kitty.nix b/gui/kitty.nix
deleted file mode 100644
index 46abef2..0000000
--- a/gui/kitty.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ pkgs, ... }:
-
-{
- home = {
- packages = [ pkgs.kitty ];
-
- file.".config/kitty/kitty.conf".text = ''
- font_family iosevka
- font_size 10
- font_size_delta 1
- adjust_line_height 110%
-
- background #161616
- foreground #F2F2F2
- # black
- color0 #161616
- color8 #F2F2F2
- # red
- color1 #8C3346
- color9 #ff0000
- # green
- color2 #aadb0f
- color10 #909636
- # yellow
- color3 #E4E093
- color11 #ffff00
- # blue
- color4 #352F6A
- color12 #0000ff
- # magenta
- color5 #ce5c00
- color13 #f57900
- # cyan
- color6 #89b6e2
- color14 #46a4ff
- # white
- color7 #F2F2F2
- color15 #ffffff
- '';
- };
-}
diff --git a/gui/pcmanfm.nix b/gui/pcmanfm.nix
deleted file mode 100644
index 00a1393..0000000
--- a/gui/pcmanfm.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ pkgs, ... }:
-
-{
- home = {
- packages = with pkgs; [
- pcmanfm gvfs lxmenu-data shared_mime_info
- veracrypt
- ];
-
- sessionVariables = {
- # required to enable auto-mounting in pcmanfm
- GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
- # use GTK theme in libreoffice
- SAL_USE_VCLPLUGIN = "gtk";
- };
- };
-}
diff --git a/gui/urxvt.nix b/gui/terminal.nix
index 408d5d5..1213e97 100644
--- a/gui/urxvt.nix
+++ b/gui/terminal.nix
@@ -1,7 +1,46 @@
{ pkgs, ... }:
{
- home.packages = [ pkgs.rxvt_unicode ];
+ home = {
+ packages = with pkgs; [
+ kitty
+ rxvt_unicode
+ ];
+
+ file.".config/kitty/kitty.conf".text = ''
+ font_family iosevka
+ font_size 10
+ font_size_delta 1
+ adjust_line_height 110%
+
+ background #161616
+ foreground #F2F2F2
+ # black
+ color0 #161616
+ color8 #F2F2F2
+ # red
+ color1 #8C3346
+ color9 #ff0000
+ # green
+ color2 #aadb0f
+ color10 #909636
+ # yellow
+ color3 #E4E093
+ color11 #ffff00
+ # blue
+ color4 #352F6A
+ color12 #0000ff
+ # magenta
+ color5 #ce5c00
+ color13 #f57900
+ # cyan
+ color6 #89b6e2
+ color14 #46a4ff
+ # white
+ color7 #F2F2F2
+ color15 #ffffff
+ '';
+ };
xresources.extraConfig = ''
URxvt.saveLines: 10000
diff --git a/gui/xmonad.nix b/gui/xmonad.nix
index da7d73a..c0c4647 100644
--- a/gui/xmonad.nix
+++ b/gui/xmonad.nix
@@ -1,6 +1,11 @@
{ pkgs, ... }:
{
+ imports = [
+ ./gtk.nix
+ ./rofi.nix
+ ];
+
xsession = {
enable = true;
diff --git a/gui/zathura.nix b/gui/zathura.nix
deleted file mode 100644
index 41eefbc..0000000
--- a/gui/zathura.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ pkgs, ... }:
-
-{
- home = {
- packages = [ pkgs.zathura ];
-
- file.".config/zathura/zathurarc".text = ''
- set font "Iosevka 14px"
-
- set inputbar-bg "#161616"
- set inputbar-fg "#909737"
-
- set statusbar-bg "#161616"
- set statusbar-fg "#909737"
-
- set completion-bg "#161616"
- set completion-fg "#909737"
-
- set completion-highlight-bg "#909737"
- set completion-highlight-fg "#161616"
-
- set recolor-lightcolor "#161616"
- set recolor-darkcolor "#ffffff"
- '';
- };
-}