diff options
Diffstat (limited to 'home-manager/gui')
-rw-r--r-- | home-manager/gui/home.nix | 7 | ||||
-rw-r--r-- | home-manager/gui/modules/foot.nix | 13 | ||||
-rw-r--r-- | home-manager/gui/modules/zathura.nix | 15 |
3 files changed, 0 insertions, 35 deletions
diff --git a/home-manager/gui/home.nix b/home-manager/gui/home.nix deleted file mode 100644 index 4c8c0e2..0000000 --- a/home-manager/gui/home.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: { - imports = [ - ../common/home.nix - ./modules/foot.nix - ./modules/zathura.nix - ]; -} diff --git a/home-manager/gui/modules/foot.nix b/home-manager/gui/modules/foot.nix deleted file mode 100644 index 7adaf40..0000000 --- a/home-manager/gui/modules/foot.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ ... }: { - programs.foot = { - enable = true; - - settings = { - colors.background = "000000"; - main = { - pad = "10x10"; - font = "monospace:size=18"; - }; - }; - }; -} diff --git a/home-manager/gui/modules/zathura.nix b/home-manager/gui/modules/zathura.nix deleted file mode 100644 index f7b7e4d..0000000 --- a/home-manager/gui/modules/zathura.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ ... }: { - programs.zathura = { - enable = true; - - mappings = { - "f" = "toggle_fullscreen"; - "[fullscreen] f" = "toggle_fullscreen"; - }; - options = { - "font" = "Sans"; - "statusbar-basename" = true; - "selection-clipboard" = "clipboard"; - }; - }; -} |