Home Gen505 @ 2025-05-03-01:35 by jonas@comfy-station

This commit is contained in:
2025-05-03 01:35:34 +02:00
parent 7add5e0db6
commit 9a5d27a7b1
13 changed files with 396 additions and 400 deletions

View File

@@ -1,22 +1,31 @@
{pkgs, ...}: {
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = false;
systemd.variables = ["--all"];
xwayland.enable = true;
};
{
config,
lib,
pkgs,
...
}: let
cfg = config.hive.hyprland;
in {
config = lib.mkIf cfg.enable {
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = false;
systemd.variables = ["--all"];
xwayland.enable = true;
};
home.packages = with pkgs; [
wl-clipboard
];
home.packages = with pkgs; [
wl-clipboard
];
services.hypridle.enable = true;
services.hypridle.enable = true;
programs.wpaperd = {
enable = true;
settings = {
default = {
path = ../../../static/wallpaper/stones.jpg;
programs.wpaperd = {
enable = true;
settings = {
default = {
path = ../../../static/wallpaper/stones.jpg;
};
};
};
};