rearrange things

This commit is contained in:
iFargle 2023-07-01 21:52:00 +09:00
parent 0f4da14c00
commit 58e0d58c12
5 changed files with 11 additions and 2 deletions

View file

@ -17,6 +17,7 @@
vim-airline-themes vim-airline-themes
nord-vim nord-vim
gruvbox gruvbox
tokyo-night-theme
]; ];
extraConfig = '' extraConfig = ''
set mouse=a set mouse=a

View file

@ -40,12 +40,15 @@
gnomeExtensions.user-themes gnomeExtensions.user-themes
gnomeExtensions.caffeine gnomeExtensions.caffeine
gnomeExtensions.hibernate-status-button gnomeExtensions.hibernate-status-button
gnomeExtensions.night-theme-switcher
gnome3.gnome-tweaks gnome3.gnome-tweaks
papirus-icon-theme
]; ];
imports = [ imports = [
./gnome/gruvbox-theme.nix ./gnome/themes/gruvbox.nix
# ./gnome/nordic-theme.nix ./gnome/themes/tokyo-night.nix
# ./gnome/themes/nordic.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,5 @@
{ config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
tokyo-night-gtk
];
}