treewide: preliminary Wayland!

This commit is contained in:
LavaDesu 2024-01-17 15:33:46 +07:00
parent 67798937bb
commit 2602b8bc1c
Signed by: cilly
GPG key ID: 6500251E087653C9
11 changed files with 197 additions and 11 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ socat ];
programs.eww = {
enable = true;
configDir = ../../res/eww-wayland;
};
}

View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = "theme";
};
xdg.configFile."rofi/theme.rasi".source = ../../res/theme.rasi;
}