nixos/modules/desktop/sway.nix

249 lines
7.1 KiB
Nix
Raw Normal View History

2023-08-04 13:08:58 +02:00
{ home-manager, lib, pkgs, ... }: {
2023-08-01 15:35:09 +02:00
# https://nixos.wiki/wiki/Sway
2023-08-16 02:31:35 +02:00
# Polkit is required to configure sway with home-manager
2023-08-04 13:08:58 +02:00
security.polkit.enable = true;
2023-08-01 15:35:09 +02:00
home-manager.users.caspervk = {
wayland.windowManager.sway = {
enable = true;
2023-08-16 02:31:35 +02:00
# Execute sway with required environment variables for GTK applications
wrapperFeatures = {
gtk = true;
};
2023-08-01 15:35:09 +02:00
config = {
input = {
"type:keyboard" = {
2023-08-01 15:35:09 +02:00
xkb_layout = "us";
xkb_variant = "altgr-intl";
2023-08-04 13:08:58 +02:00
repeat_delay = "250";
};
"type:touchpad" = {
2023-08-01 15:35:09 +02:00
tap = "enabled";
natural_scroll = "enable";
2023-08-01 16:55:53 +02:00
dwt = "disabled"; # don't disable-while-typing
2023-08-01 15:35:09 +02:00
};
2023-08-12 18:44:46 +02:00
"type:pointer" = {
2023-08-16 02:31:35 +02:00
accel_profile = "flat";
pointer_accel = "0.5"; # pointer SPEED, not acceleration
2023-08-14 01:46:41 +02:00
};
};
output = {
"*" = {
bg = "${./img/background.png} fill";
2023-08-12 18:44:46 +02:00
};
2023-08-01 15:35:09 +02:00
};
2023-08-01 16:55:53 +02:00
modifier = "Mod4"; # super
2023-08-04 13:08:58 +02:00
keybindings = lib.mkOptionDefault {
2023-08-17 01:51:37 +02:00
# Menu
"Mod4+backspace" = "exec rofi -show combi";
# Lock
2023-08-04 13:08:58 +02:00
"Mod4+Escape" = "exec loginctl lock-session";
2023-08-17 01:51:37 +02:00
# Mod+a focuses parent, but there is no way (by default) to focus child
"Mod4+x" = "focus child";
2023-08-12 18:44:46 +02:00
# Move workspace between outputs
"Mod4+Control+Shift+h" = "move workspace to output left";
"Mod4+Control+Shift+l" = "move workspace to output right";
2023-08-04 13:08:58 +02:00
# Brightness
"XF86MonBrightnessUp" = "exec light -A 5";
"XF86MonBrightnessDown" = "exec light -U 5";
# Volume
"XF86AudioRaiseVolume" = "exec 'pactl set-sink-volume @DEFAULT_SINK@ +2%'";
"XF86AudioLowerVolume" = "exec 'pactl set-sink-volume @DEFAULT_SINK@ -2%'";
"XF86AudioMute" = "exec 'pactl set-sink-mute @DEFAULT_SINK@ toggle'";
2023-08-13 19:29:18 +02:00
# Media
"XF86AudioPlay" = "exec 'playerctl play-pause'";
"XF86AudioNext" = "exec 'playerctl next'";
"XF86AudioPrev" = "exec 'playerctl previous'";
2023-08-04 13:08:58 +02:00
};
2023-08-14 01:46:41 +02:00
focus = {
followMouse = "no";
};
2023-08-01 15:35:09 +02:00
terminal = "alacritty";
workspaceAutoBackAndForth = true;
2023-08-04 13:08:58 +02:00
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
2023-08-01 15:35:09 +02:00
};
};
2023-08-04 13:08:58 +02:00
2023-08-16 02:31:35 +02:00
# https://github.com/Alexays/Waybar/wiki/Configuration
# https://github.com/Alexays/Waybar/blob/master/resources/config
2023-08-04 13:08:58 +02:00
programs.waybar =
let
mkDefaultConfig = pkgs.stdenv.mkDerivation {
name = "waybarDefaultConfig";
src = "${pkgs.waybar}/etc/xdg/waybar";
installPhase = ''
2023-08-16 02:31:35 +02:00
# JSON isn't valid if it contains comments
2023-08-04 13:08:58 +02:00
sed 's#//.*##' config | ${pkgs.jq}/bin/jq > $out
'';
};
defaultConfig = builtins.fromJSON (lib.readFile "${mkDefaultConfig}");
in
{
enable = true;
settings = {
bar = lib.mkMerge [
defaultConfig
{
modules-right = lib.mkForce [ "tray" "idle_inhibitor" "pulseaudio" "cpu" "memory" "backlight" "network" "battery" "clock" ];
2023-08-04 13:38:13 +02:00
battery = {
states = lib.mkForce {
warning = 15;
critical = 5;
};
};
2023-08-04 13:08:58 +02:00
clock = {
interval = 5;
locale = "da_DK.UTF-8";
format = "{:%a %e. %b %H:%M}";
calendar = {
mode = "year";
mode-mon-col = 6;
weeks-pos = "left";
};
};
backlight = {
format-icons = lib.mkForce [ "" ];
};
}
];
};
};
2023-08-16 02:31:35 +02:00
# https://github.com/swaywm/swaylock
2023-08-14 01:46:41 +02:00
programs.swaylock = {
enable = true;
settings = {
image = "${./img/lockscreen.png}";
};
};
2023-08-16 02:31:35 +02:00
# https://github.com/swaywm/swayidle
2023-08-04 13:08:58 +02:00
services.swayidle =
let
2023-08-14 01:46:41 +02:00
lock = "${pkgs.swaylock}/bin/swaylock --daemonize";
2023-08-04 13:08:58 +02:00
in
{
enable = true;
events = [
{ event = "lock"; command = lock; }
{ event = "before-sleep"; command = lock; }
];
timeouts = [
{ timeout = 600; command = lock; }
];
};
2023-08-13 19:43:24 +02:00
2023-08-17 01:51:37 +02:00
# https://github.com/davatorium/rofi
# https://wiki.archlinux.org/title/rofi
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-emoji
];
theme = "glue_pro_blue";
extraConfig = {
modi = "combi";
combi-modi = "window,drun,emoji";
show-icons = true;
};
};
2023-08-16 02:31:35 +02:00
# https://sr.ht/~emersion/kanshi/
2023-08-13 19:43:24 +02:00
services.kanshi = {
enable = true;
profiles = {
# Output names ("criteria") from `swaymsg -t get_outputs`.
2023-08-14 02:40:13 +02:00
omega.outputs = [
2023-08-13 19:43:24 +02:00
{
criteria = "ASUSTek COMPUTER INC ROG XG27AQ M3LMQS370969";
mode = "2560x1440@144Hz";
position = "0,0";
2023-08-16 02:31:35 +02:00
adaptiveSync = false; # seems to flicker
2023-08-13 19:43:24 +02:00
}
{
criteria = "BNQ BenQ XL2411Z SCD06385SL0";
mode = "1920x1080@144Hz";
position = "2560,0";
}
];
2023-08-14 02:40:13 +02:00
zeta.outputs = [
{
criteria = "Chimei Innolux Corporation 0x14D2 Unknown";
mode = "1920x1080@60Hz";
}
];
2023-08-13 19:43:24 +02:00
};
};
2023-08-17 00:47:48 +02:00
home.sessionVariables = {
# The firefox-wayland package works with wayland without any further
# configuration, but tor-browser doesn't.
MOZ_ENABLE_WAYLAND = 1;
};
2023-08-01 15:35:09 +02:00
};
2023-08-16 02:31:35 +02:00
# Connect swaylock to PAM. If this isn't done, swaylock needs the suid flag
security.pam.services.swaylock.text = ''
auth include login
'';
# https://nixos.wiki/wiki/Fonts
fonts = {
fonts = with pkgs; [
# Nerd Fonts patches glyph icons, such as from Font Awesome, into existing fonts
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
font-awesome # waybar uses Font Awesome icons directly
];
fontDir.enable = true; # TODO?
enableDefaultFonts = true;
fontconfig.defaultFonts = {
monospace = [ "JetBrainsMonoNL Nerd Font" ]; # NL = NoLigatures
};
};
2023-08-01 15:35:09 +02:00
# Audio
2023-08-16 02:31:35 +02:00
# https://nixos.wiki/wiki/PipeWire
2023-08-01 15:35:09 +02:00
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
jack.enable = true;
pulse.enable = true;
};
2023-08-16 02:31:35 +02:00
# `light` command for screen brightness
programs.light.enable = true;
environment.systemPackages = with pkgs; [
alacritty # terminal
clipman # TODO
gnome3.adwaita-icon-theme # cursor TODO
grim # screenshot TODO
pavucontrol # PulseAudio Volume Control gui
playerctl # media control cli for keybinds
pulseaudio # volume control (pactl) for keybinds
slurp # wayland region selector; for grim(shot)
wdisplays # gui for ad-hoc display configuration
wl-clipboard # wl-copy/wl-paste commands
wl-mirror # screen mirroing; wl-mirror (slurp -f%o -o)
2023-08-17 01:51:37 +02:00
wtype # xdotool for wayland
2023-08-16 02:31:35 +02:00
];
2023-08-01 15:35:09 +02:00
# Allow sharing screen
#xdg.portal.wlr.enable = true;
2023-08-01 16:49:22 +02:00
hardware.opengl = {
enable = true;
2023-08-01 16:55:53 +02:00
extraPackages = with pkgs; [ intel-media-driver ];
2023-08-01 16:49:22 +02:00
};
2023-08-01 15:35:09 +02:00
}