2024-03-21 17:19:06 +01:00
|
|
|
{ config
|
|
|
|
, lib
|
|
|
|
, pkgs
|
|
|
|
, ...
|
2024-08-20 13:58:45 +02:00
|
|
|
}:
|
|
|
|
|
2024-03-21 17:19:06 +01:00
|
|
|
|
|
|
|
let
|
2024-08-20 13:58:45 +02:00
|
|
|
inherit (lib) mkEnableOption mkIf mkOption types;
|
|
|
|
|
2024-03-21 17:19:06 +01:00
|
|
|
cfg = config.my.programs.river;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.my.programs.river = {
|
|
|
|
enable = mkEnableOption "river";
|
|
|
|
keyboardLayouts = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
description = "list of keyboard layouts";
|
2024-08-30 10:30:23 +02:00
|
|
|
default = [ "us" "de" ];
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
2024-03-24 13:21:59 +01:00
|
|
|
nvidiaSupport = mkEnableOption "nvidiaSupport";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.river.enable = true;
|
|
|
|
my = {
|
|
|
|
programs = {
|
|
|
|
wallpaper.enable = true;
|
2024-08-20 13:58:45 +02:00
|
|
|
kitty.enable = true;
|
2024-03-24 13:15:17 +01:00
|
|
|
tofi.enable = true;
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
wallpapers.enable = true;
|
|
|
|
services = {
|
|
|
|
dunst.enable = true;
|
|
|
|
wallpaper = {
|
|
|
|
enable = true;
|
2024-03-24 13:21:10 +01:00
|
|
|
target = "river-session.target";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
2024-03-24 13:21:10 +01:00
|
|
|
spotify-player.target = "river-session.target";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.moritz = {
|
2024-03-24 13:21:59 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
rivercarro
|
2024-10-16 14:07:12 +02:00
|
|
|
wlr-randr
|
|
|
|
jq
|
2024-03-24 13:21:59 +01:00
|
|
|
];
|
|
|
|
services.kanshi = {
|
|
|
|
enable = true;
|
|
|
|
systemdTarget = "river-session.target";
|
|
|
|
};
|
2024-03-21 17:19:06 +01:00
|
|
|
wayland.windowManager.river = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
border-width = 2;
|
|
|
|
declare-mode = [
|
|
|
|
"locked"
|
|
|
|
"normal"
|
|
|
|
"passthrough"
|
|
|
|
];
|
2024-10-16 14:07:12 +02:00
|
|
|
map-switch.normal.lid = {
|
|
|
|
close = ''
|
2024-10-26 18:19:50 +02:00
|
|
|
spawn 'monitors=$(wlr-randr --json | jq .[].name | count); [ "$monitors" = 1] && loginctl lock-session'
|
2024-10-16 14:07:12 +02:00
|
|
|
'';
|
|
|
|
open = "spawn 'wlr-randr --output eDP-1 --on'";
|
|
|
|
};
|
2024-03-21 17:19:06 +01:00
|
|
|
map = {
|
|
|
|
normal = {
|
|
|
|
"Super Q" = "close";
|
2024-10-25 07:35:36 +02:00
|
|
|
"Super Return" = "spawn '${config.my.terminal.package}'";
|
2024-03-24 13:15:17 +01:00
|
|
|
"Super R" = ''spawn 'exec $(tofi-run --fuzzy-match=true)' '';
|
2024-03-24 13:21:59 +01:00
|
|
|
"Super W" = ''spawn "pkill -USR1 waybar"'';
|
|
|
|
"Super+Shift R" = "spawn ~/.config/river/init";
|
|
|
|
|
|
|
|
# Focus view
|
|
|
|
"Super J" = "focus-view next";
|
|
|
|
"Super K" = "focus-view previous";
|
|
|
|
|
|
|
|
# swap the focused view
|
|
|
|
"Super+Shift J" = "swap next";
|
|
|
|
"Super+Shift K" = "swap previous";
|
|
|
|
|
|
|
|
# focus output
|
|
|
|
"Super Period" = "focus-output next";
|
|
|
|
"Super Comma" = "focus-output previous";
|
|
|
|
|
|
|
|
# send to output
|
|
|
|
"Super+Shift Period" = "send-to-output next";
|
|
|
|
"Super+Shift Comma" = "send-to-output previous";
|
|
|
|
|
|
|
|
# bump in layout stack
|
|
|
|
"Super Z" = "zoom";
|
2024-04-22 09:35:59 +02:00
|
|
|
|
2024-08-20 13:58:45 +02:00
|
|
|
# lock screen
|
|
|
|
"Super+Alt L" = ''spawn "loginctl lock-session"'';
|
2024-10-25 07:36:13 +02:00
|
|
|
"Control I" = ''spawn "loginctl lock-session"'';
|
2024-10-16 14:07:12 +02:00
|
|
|
|
|
|
|
# XF86 keys
|
|
|
|
"None XF86AudioLowerVolume" = "spawn 'pamixer -d 5'";
|
|
|
|
"None XF86AudioRaiseVolume" = "spawn 'pamixer -i 5'";
|
|
|
|
"None XF86AudioMute" = "spawn 'pamixer -t'";
|
|
|
|
"None XF86AudioNext" = "spawn 'playerctl -p spotifyd,firefox next'";
|
|
|
|
"None XF86AudioPlay" = "spawn 'playerctl -p spotifyd,firefox play-pause'";
|
|
|
|
"None XF86AudioPrev" = "spawn 'playerctl -p spotifyd,firefox previous'";
|
2024-04-22 09:35:59 +02:00
|
|
|
} //
|
|
|
|
# tags
|
|
|
|
(
|
|
|
|
let
|
2024-08-20 13:58:45 +02:00
|
|
|
numbers = lib.range 1 9;
|
2024-04-22 09:35:59 +02:00
|
|
|
toTag = num: "$((1 << (${toString num} - 1)))";
|
|
|
|
|
|
|
|
mkMappings = num:
|
|
|
|
let
|
|
|
|
numStr = toString num;
|
|
|
|
tag = toTag num;
|
|
|
|
in
|
|
|
|
[
|
|
|
|
# Super+Control+[1-9] to toggle focus of tag [0-8]
|
2024-08-20 13:58:45 +02:00
|
|
|
{ name = "Super ${numStr}"; value = "set-focused-tags ${tag}"; }
|
2024-04-22 09:35:59 +02:00
|
|
|
|
|
|
|
# Super+Shift+Control+[1-9] to toggle tag [0-8] of focused view
|
|
|
|
{ name = "Super+Shift ${numStr}"; value = "toggle-view-tags ${tag}"; }
|
|
|
|
];
|
2024-08-20 13:58:45 +02:00
|
|
|
mappings = lib.flatten (map mkMappings numbers);
|
2024-04-22 09:35:59 +02:00
|
|
|
in
|
2024-08-20 13:58:45 +02:00
|
|
|
lib.listToAttrs mappings
|
2024-04-22 09:35:59 +02:00
|
|
|
);
|
2024-03-24 13:21:59 +01:00
|
|
|
};
|
2024-10-16 14:07:12 +02:00
|
|
|
map-pointer.normal = {
|
|
|
|
"Super BTN_LEFT" = "move-view";
|
|
|
|
"Super BTN_RIGHT" = "resize-view";
|
|
|
|
"Super BTN_MIDDLE" = "toggle-float";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
2024-04-22 09:35:59 +02:00
|
|
|
attach-mode = "bottom";
|
|
|
|
default-layout = "rivercarro";
|
|
|
|
focus-follows-cursor = "normal";
|
|
|
|
hide-cursor = {
|
|
|
|
timeout = "1500";
|
|
|
|
when-typing = "enabled";
|
|
|
|
};
|
|
|
|
set-cursor-warp = "on-focus-change";
|
2024-08-20 13:58:45 +02:00
|
|
|
keyboard-layout = "-options grp:win_space_toggle,caps:escape ${lib.concatStringsSep "," cfg.keyboardLayouts}";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
2024-03-24 13:21:59 +01:00
|
|
|
extraConfig = /* bash */ ''
|
|
|
|
rivercarro_pid="$(pidof rivercarro)"
|
|
|
|
if [[ -z $rivercarro_pid ]]; then
|
2024-04-22 09:35:59 +02:00
|
|
|
rivercarro -inner-gaps 4 -outer-gaps 4 &
|
2024-03-24 13:21:59 +01:00
|
|
|
fi
|
|
|
|
'';
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# add waybar as a status bar
|
|
|
|
programs.waybar = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
# start using systemd service
|
|
|
|
systemd = {
|
|
|
|
enable = true;
|
2024-03-24 13:21:10 +01:00
|
|
|
target = "river-session.target";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
mainBar = {
|
|
|
|
start_hidden = true;
|
|
|
|
layer = "top";
|
|
|
|
position = "top";
|
|
|
|
height = 20;
|
2024-03-24 13:21:59 +01:00
|
|
|
modules-left = [ "river/tags" ];
|
2024-03-21 17:19:06 +01:00
|
|
|
modules-center = [ "river/window" ];
|
|
|
|
modules-right = [ "network" "memory" "cpu" "battery" "clock" ];
|
|
|
|
};
|
|
|
|
};
|
2024-08-20 13:58:45 +02:00
|
|
|
style = lib.readFile ./style.css;
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# lock screen after timeout
|
|
|
|
programs.swaylock = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
color = "000000";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services.swayidle = {
|
|
|
|
enable = true;
|
|
|
|
events = [
|
|
|
|
{
|
|
|
|
event = "before-sleep";
|
2024-08-20 13:58:45 +02:00
|
|
|
command = "${lib.getExe pkgs.swaylock} -fF";
|
2024-03-21 17:19:06 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
event = "lock";
|
2024-08-20 13:58:45 +02:00
|
|
|
command = "${lib.getExe pkgs.swaylock} -fF";
|
2024-03-21 17:19:06 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
timeouts =
|
|
|
|
let
|
|
|
|
lockTimeout = 10;
|
|
|
|
in
|
|
|
|
[
|
|
|
|
{
|
|
|
|
timeout = lockTimeout * 60 - 10;
|
|
|
|
command = "${pkgs.libnotify}/bin/notify-send 'Locking screen!'";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
timeout = lockTimeout * 60 + 10;
|
|
|
|
command = "${pkgs.systemd}/bin/loginctl lock-session";
|
|
|
|
}
|
|
|
|
];
|
2024-03-24 13:21:10 +01:00
|
|
|
systemdTarget = "river-session.target";
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# adds pam module for swaylock
|
|
|
|
security.pam.services.swaylock = { };
|
|
|
|
|
|
|
|
users.users.moritz.packages = with pkgs; [
|
|
|
|
brightnessctl # control brightness
|
2024-10-21 11:19:13 +02:00
|
|
|
grimblast # screenshot tool
|
2024-03-21 17:19:06 +01:00
|
|
|
pamixer # pulse audio cli
|
|
|
|
playerctl # control media playback
|
|
|
|
slurp # region select for wayland (for screensharing)
|
|
|
|
wdisplays # manage monitors
|
|
|
|
wl-clipboard # clipboard tool for wayland
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
# additional environment variables
|
2024-03-24 13:21:59 +01:00
|
|
|
environment.sessionVariables =
|
|
|
|
{
|
|
|
|
XDG_CURRENT_DESKTOP = "river";
|
|
|
|
XDG_SESSION_TYPE = "wayland";
|
|
|
|
XDG_SESSION_DESKTOP = "river";
|
|
|
|
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
|
|
|
QT_QPA_PLATFORM = "wayland;xcb";
|
|
|
|
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
|
|
|
|
QT_QPA_PLATFORMTHEME = "qt5ct";
|
|
|
|
_JAVA_AWT_WM_NONEREPARENTING = "1";
|
2024-08-20 13:58:45 +02:00
|
|
|
} // (lib.optionalAttrs cfg.nvidiaSupport
|
2024-03-24 13:21:59 +01:00
|
|
|
{
|
|
|
|
GBM_BACKEND = "nvidia-drm";
|
|
|
|
GDK_BACKEND = "wayland";
|
|
|
|
LIBVA_DRIVER_NAME = "nvidia";
|
|
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
|
|
WLR_DRM_DEVICES = "/dev/dri/card0";
|
|
|
|
WLR_DRM_NO_ATOMIC = "1";
|
|
|
|
WLR_NO_HARDWARE_CURSORS = "1";
|
|
|
|
XDG_CURRENT_DESKTOP = "river";
|
|
|
|
_GL_GSYNC_ALLOWED = "0";
|
|
|
|
__GLX_VENDOR_LIBRARY_NAME = "nvidia";
|
|
|
|
__GL_VRR_ALLOWED = "0";
|
|
|
|
});
|
2024-03-21 17:19:06 +01:00
|
|
|
|
|
|
|
services = {
|
|
|
|
dbus.enable = true;
|
|
|
|
# use pipewire (needed for screensharing)
|
|
|
|
pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
};
|
2024-08-20 13:58:45 +02:00
|
|
|
displayManager = {
|
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "moritz";
|
|
|
|
};
|
|
|
|
defaultSession = "river";
|
|
|
|
};
|
2024-03-21 17:19:06 +01:00
|
|
|
xserver = {
|
|
|
|
enable = true;
|
2024-08-20 13:58:45 +02:00
|
|
|
displayManager.lightdm.enable = true;
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
};
|
|
|
|
}
|