Add vimix

This commit is contained in:
iFargle 2023-07-01 22:04:20 +09:00
parent 0df2e1c6fa
commit 6791ca55a3
2 changed files with 9 additions and 2 deletions

View file

@ -46,9 +46,10 @@
]; ];
imports = [ imports = [
./gnome/themes/gruvbox.nix # ./gnome/themes/gruvbox.nix
./gnome/themes/tokyo-night.nix # ./gnome/themes/tokyo-night.nix
# ./gnome/themes/nordic.nix # ./gnome/themes/nordic.nix
./gnome/themes/vimix.nix
]; ];
# Idea... Move these to a separate file and tie it into dconf sections that load the theme automatically when I want it. # Idea... Move these to a separate file and tie it into dconf sections that load the theme automatically when I want it.
} }

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
vimix-icon-theme
vimix-gtk-themes
];
}