feat(home): Set Niri wallpaper
This commit is contained in:
parent
7d78c1e2d3
commit
8b81c32ec5
2 changed files with 51 additions and 1 deletions
44
modules/home/services/swaybg/default.nix
Normal file
44
modules/home/services/swaybg/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.services.swaybg;
|
||||
in {
|
||||
options.marleyos.services.swaybg = {
|
||||
enable = lib.mkEnableOption "swaybg";
|
||||
|
||||
wallpaper = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
description = "Path to the wallpaper to use.";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
swaybg
|
||||
];
|
||||
|
||||
systemd.user.services.swaybg = {
|
||||
Install = {
|
||||
WantedBy = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
Unit = {
|
||||
Description = "Wallpaper tool for Wayland compositors";
|
||||
Documentation = ["man:swaybg(1)"];
|
||||
After = ["graphical-session-pre.target"];
|
||||
PartOf = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
Service = {
|
||||
Type = "exec";
|
||||
ExecStart = "${lib.getExe pkgs.swaybg} -i ${cfg.wallpaper}";
|
||||
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
|
||||
KillMode = "mixed";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -17,6 +17,10 @@ in {
|
|||
fuzzel.enable = true;
|
||||
};
|
||||
services = {
|
||||
swaybg = {
|
||||
enable = true;
|
||||
wallpaper = ./wallpaper.png;
|
||||
};
|
||||
swaync.enable = true;
|
||||
};
|
||||
};
|
||||
|
@ -25,7 +29,9 @@ in {
|
|||
# Auto-enabled by the nixos module
|
||||
# enable = true;
|
||||
|
||||
settings = {
|
||||
settings = let
|
||||
cmd = command: {command = [command];};
|
||||
in {
|
||||
prefer-no-csd = true;
|
||||
hotkey-overlay.skip-at-startup = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue