diff --git a/hardware/displays.nix b/hardware/displays.nix index cf23c93..383b6d5 100644 --- a/hardware/displays.nix +++ b/hardware/displays.nix @@ -1,4 +1,4 @@ -{config, ...}: { +{...}: { displays = { enable = true; displays = [ @@ -12,7 +12,7 @@ }; position.x = 0; position.y = 0; - wallpaper = "/home/tristan/Pictures/backgrounds/demonslayer.jpg"; + wallpaper = ../images/demonslayer.png; } { name = "HDMI-A-1"; @@ -25,18 +25,9 @@ x = 1920; y = 0; }; - wallpaper = "/home/tristan/Pictures/backgrounds/wallhaven-qzlyzd.jpg"; + wallpaper = ../images/nier2.jpg; rotation = 1; } - { - name = "eDP-1"; - description = "BOE 0x07D8"; - position = { - x = 0; - y = 1080; - }; - wallpaper = "/home/tristan/Pictures/backgrounds/nix-soft.png"; - } ]; }; } diff --git a/images/nier2.jpg b/images/nier2.jpg new file mode 100644 index 0000000..3fbca6c Binary files /dev/null and b/images/nier2.jpg differ diff --git a/images/nix-soft.png b/images/nix-soft.png new file mode 100644 index 0000000..3e252b8 Binary files /dev/null and b/images/nix-soft.png differ diff --git a/lib/modules/wayland.nix b/lib/modules/wayland.nix index 0e442a2..7c07049 100644 --- a/lib/modules/wayland.nix +++ b/lib/modules/wayland.nix @@ -82,6 +82,9 @@ in { "SUPER_SHIFT, l, changegroupactive,f" "SUPER, Y, togglespecialworkspace" "SUPER_SHIFT, Y, movetoworkspace, special" + "SUPER_SHIFT, X, killactive" + "SUPER, slash, focuswindow, brave-browser" + "SUPER, n, focuswindow, Logseq" "SUPER, R, submap, resize" "SUPER,1,workspace,1" "SUPER,2,workspace,2" diff --git a/lib/modules/work.nix b/lib/modules/work.nix index abc768b..2330e22 100644 --- a/lib/modules/work.nix +++ b/lib/modules/work.nix @@ -10,6 +10,18 @@ with lib; { }; config = mkIf config.roles.work.enable { + displays.displays = [ + { + name = "eDP-1"; + description = "BOE 0x07D8"; + position = { + x = 0; + y = 1080; + }; + wallpaper = ../../images/nix-soft.png; + } + ]; + roles.email = { enable = true; email = "tristan.beedell@cryoserver.com";