feat(eww): add eww

This commit is contained in:
jacekpoz 2023-08-16 10:09:53 +02:00
parent 420cc01f08
commit fcf1352c78
3 changed files with 14 additions and 0 deletions

View file

@ -174,6 +174,7 @@
mesa-demos
nnn
aseprite-unfree
nixpkgs-wayland.eww-wayland
];
stateVersion = lib.mkDefault "23.11";

View file

@ -1,6 +1,7 @@
_: {
imports = [
./anyrun.nix
./eww
./firefox.nix
./foot.nix
./gtk.nix

View file

@ -0,0 +1,12 @@
{
config,
inputs,
pkgs,
...
}: {
programs.eww = {
enable = true;
package = inputs.nixpkgs-wayland.packages.${pkgs.system}.eww-wayland;
configDir = "./config";
};
}