diff options
author | Adrian Kummerlaender | 2021-08-19 23:33:53 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-08-19 23:33:53 +0200 |
commit | 14e72c5f239dd02234cbe467c3a4be1c0845c7cd (patch) | |
tree | ffbfe47590e3e74c54e145e76e7da0832e33e4d1 /gui | |
parent | d7376225387e88547ac56409aefb7443af32b7fd (diff) | |
download | nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar.gz nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar.bz2 nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar.lz nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar.xz nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.tar.zst nixos_home-14e72c5f239dd02234cbe467c3a4be1c0845c7cd.zip |
Enable pure instantiation of config via flake
i.e. via `nix run .#hostname`.
Currently pulling in a pending pull request at jupyterWith for
flakeified JupyterLab installations.
The entire system consisting of `nixos_system` and `nixos_home`
flakes can now be purely instantiated from clones in the user
directory. No "/etc/nixos" resp. ".config/nixpkgs" needed.
This is nice, probably not going to bother merging both
repositories.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/gtk.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/gtk.nix b/gui/gtk.nix index fc86160..f4bac43 100644 --- a/gui/gtk.nix +++ b/gui/gtk.nix @@ -9,7 +9,7 @@ in { theme = { name = "oomox"; - package = pkgs-personal.oomox-gtk-theme { + package = pkgs-personal.customizable.oomox-gtk-theme { accent_bg = "aadb0f"; bg = "d8d8d8"; fg = "101010"; @@ -38,7 +38,7 @@ in { iconTheme = { name = "oomox-archdroid"; - package = pkgs-personal.oomox-archdroid-icon-theme "909636"; + package = pkgs-personal.customizable.oomox-archdroid-icon-theme "909636"; }; font = { |