Install eww

This commit is contained in:
Isshi0417 2024-07-21 15:53:07 +09:00
parent 1e158feaba
commit 5608251821
4 changed files with 14 additions and 2 deletions

View File

@ -9,6 +9,7 @@
./nixvim ./nixvim
./helix ./helix
./gnome ./gnome
./eww
]; ];
# Allow Unfree # Allow Unfree

View File

View File

@ -0,0 +1,8 @@
{ ... }:
{
programs.eww = {
enable = true;
configDir = ./config;
};
}

View File

@ -1,7 +1,10 @@
{ pkgs,... }: { pkgs,... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs.gnomeExtensions; [
gnomeExtensions.pop-shell pop-shell
caffeine
clipboard-indicator
blur-my-shell
]; ];
} }