Add fluent

This commit is contained in:
iFargle 2023-07-01 22:14:00 +09:00
parent 6791ca55a3
commit 0b90db8153
2 changed files with 8 additions and 1 deletions

View file

@ -49,7 +49,8 @@
# ./gnome/themes/gruvbox.nix
# ./gnome/themes/tokyo-night.nix
# ./gnome/themes/nordic.nix
./gnome/themes/vimix.nix
# ./gnome/themes/vimix.nix
./gnome/themes/fluent.nix
];
# 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; [
fluent-gtk-theme
fluent-icon-theme
];
}