nix-config/users/tacocat/wayland/default.nix

24 lines
361 B
Nix
Raw Normal View History

2023-11-05 02:44:54 +00:00
{pkgs, ...}: {
2023-10-30 00:09:40 +00:00
imports = [
./waybar
2023-11-01 04:06:04 +00:00
./foot.nix
2023-10-30 00:09:40 +00:00
];
2023-11-14 04:51:19 +00:00
xdg.configFile."sway" = {
source = ./sway;
executable = true;
recursive = true;
};
xdg.configFile."sway/background.jpg".source = ../background.jpg;
home.packages = with pkgs; [
wl-clipboard
dunst
grim
slurp
];
2023-11-07 02:43:16 +00:00
programs.rofi.package = pkgs.rofi-wayland;
}