This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/eww/default.nix

15 lines
300 B
Nix
Raw Normal View History

2023-08-24 06:03:47 +01:00
{ pkgs, ... }:
let
inherit (import ./config.nix { inherit pkgs; }) eww-config;
inherit (import ./stylesheet.nix) eww-stylesheet;
2023-08-24 06:03:47 +01:00
in
{
2023-08-26 10:32:53 +01:00
home.packages = [ pkgs.eww-wayland ];
xdg.configFile."eww/eww.yuck".text = "${eww-config}";
xdg.configFile."eww/eww.scss".text = "${eww-stylesheet}";
2023-08-24 06:03:47 +01:00
}