aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/gtk.nix5
-rw-r--r--gui/pkgs/nvim-gui.nix8
-rw-r--r--gui/vim.nix4
3 files changed, 7 insertions, 10 deletions
diff --git a/gui/gtk.nix b/gui/gtk.nix
index abfc889..9d63b0a 100644
--- a/gui/gtk.nix
+++ b/gui/gtk.nix
@@ -2,14 +2,13 @@
let
hidpi = config.custom.hidpi;
- mypkgs = import (fetchTarball "https://pkgs.kummerlaender.eu/nixexprs.tar.gz") { };
in {
gtk = {
enable = true;
theme = {
name = "oomox";
- package = mypkgs.oomox-gtk-theme {
+ package = config.custom.pkgs.oomox-gtk-theme {
accent_bg = "aadb0f";
bg = "d8d8d8";
fg = "101010";
@@ -38,7 +37,7 @@ in {
iconTheme = {
name = "oomox-archdroid";
- package = mypkgs.oomox-archdroid-icon-theme "909636";
+ package = config.custom.pkgs.oomox-archdroid-icon-theme "909636";
};
font = {
diff --git a/gui/pkgs/nvim-gui.nix b/gui/pkgs/nvim-gui.nix
index b5093e2..5cca035 100644
--- a/gui/pkgs/nvim-gui.nix
+++ b/gui/pkgs/nvim-gui.nix
@@ -1,7 +1,5 @@
-{ pkgs, ... }:
+{ config, pkgs, ... }:
-let
- mypkgs = import (fetchTarball "https://pkgs.kummerlaender.eu/nixexprs.tar.gz") { };
-in pkgs.neovim-qt.override {
- neovim = mypkgs.custom-neovim;
+pkgs.neovim-qt.override {
+ neovim = config.custom.pkgs.custom-neovim;
}
diff --git a/gui/vim.nix b/gui/vim.nix
index 09c51e1..46ab079 100644
--- a/gui/vim.nix
+++ b/gui/vim.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ config, pkgs, ... }:
{
home = {
@@ -11,7 +11,7 @@
# nvim-qt using vim configuration
packages = let
- nvim-gui = import ./pkgs/nvim-gui.nix pkgs;
+ nvim-gui = import ./pkgs/nvim-gui.nix { inherit pkgs config; };
in [
nvim-gui
pkgs.xclip # required to access clipboard in nvim-gui