nixos/modules/dwm.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

2024-05-31 05:58:55 +00:00
{ lib, config, pkgs, ... }:
let
cfg = config.snowhawk.dwm;
in
{
options.snowhawk.dwm = {
enable = lib.mkEnableOption "dwm";
};
config = lib.mkIf cfg.enable {
services.xserver.windowManager.dwm = {
enable = true;
2024-06-07 01:42:54 +00:00
package = pkgs.dwm.overrideAttrs (oldAttrs: {
patches = [
../home/dwm/config.def.h-6.5.diff
];
});
2024-05-31 05:58:55 +00:00
};
2024-05-31 08:50:59 +00:00
2024-06-26 09:09:59 +00:00
services.picom = {
enable = true;
fade = false;
};
2024-06-29 00:56:02 +00:00
# systemd.user.services.screenlayout = {
# script = ''
# ${pkgs.xorg.xrandr}/bin/xrandr \
# --output DP-0 --primary --mode 1920x1080 --pos 1922x0 --rotate normal \
# --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal \
# --output DP-1 --off \
# --output DP-2 --off \
# --output DP-3 --off \
# --output DP-4 --off \
# --output DP-5 --off \
# --output HDMI-1 --off
# '';
# wantedBy = [ "graphical-session.target" ];
# partOf = [ "graphical-session.target" ];
# };
2024-06-28 03:46:23 +00:00
2024-06-28 02:22:58 +00:00
systemd.user.services.xrootdatetime = {
2024-06-28 03:46:23 +00:00
script = ''
while true; do
sleep 1 && date +"<-- %A, %B %d -- %H:%M -->" | xargs -I% ${pkgs.xorg.xsetroot}/bin/xsetroot -name %
done
'';
2024-06-28 02:22:58 +00:00
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
};
2024-05-31 08:50:59 +00:00
environment.systemPackages = with pkgs; [
dmenu
];
2024-05-31 05:58:55 +00:00
};
}