feat: add uwsm config, runner setting and clean up some systemd services

This commit is contained in:
Nydragon 2024-12-30 12:19:44 +01:00
parent a4b5f5994e
commit 214b7df232
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
12 changed files with 109 additions and 23 deletions

View file

@ -2,6 +2,7 @@
self, self,
pkgs, pkgs,
lib, lib,
osConfig,
... ...
}: }:
let let
@ -24,5 +25,9 @@ in
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png") (mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png") (mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
]; ];
mimeApps = {
enable = true;
defaultApplications = osConfig.xdg.mime.defaultApplications;
};
}; };
} }

View file

@ -10,8 +10,7 @@
Install.WantedBy = [ "graphical-session.target" ]; Install.WantedBy = [ "graphical-session.target" ];
Unit = { Unit = {
After = [ "graphical-session-pre.target" ]; After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
}; };
Service = { Service = {
Type = "simple"; Type = "simple";

View file

@ -11,8 +11,8 @@ let
inherit (lib.my) getExe getExe'; inherit (lib.my) getExe getExe';
desktop = osConfig.modules.system.roles.desktop; desktop = osConfig.modules.system.roles.desktop;
term = lib.my.getExe desktop.terminal; term = getExe desktop.terminal;
filemanager = lib.my.getExe desktop.filemanager; filemanager = getExe desktop.filemanager;
cliphistEnabled = osConfig.modules.services.cliphist.enable; cliphistEnabled = osConfig.modules.services.cliphist.enable;
colors = { colors = {
@ -50,7 +50,6 @@ lib.mkIf osConfig.programs.sway.enable {
swipe:up focus up swipe:up focus up
swipe:down focus down swipe:down focus down
} }
workspace 1
font pango:monospace 0.001 font pango:monospace 0.001
''; '';
config = { config = {
@ -62,9 +61,9 @@ lib.mkIf osConfig.programs.sway.enable {
mod = config.wayland.windowManager.sway.config.modifier; mod = config.wayland.windowManager.sway.config.modifier;
in in
lib.mkOptionDefault { lib.mkOptionDefault {
"${mod}+p" = "exec ${pkgs.hyprlock}/bin/hyprlock"; "${mod}+p" = "exec ${getExe pkgs.hyprlock}";
"${mod}+Shift+p" = "exec rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu"; "${mod}+Shift+p" = "exec ${getExe pkgs.rofi} -show p -modi p:${getExe pkgs.rofi-power-menu}";
# Reload the config file # Reload the config file
"${mod}+Shift+c" = "reload"; "${mod}+Shift+c" = "reload";
# Kill the focused window # Kill the focused window
@ -72,14 +71,13 @@ lib.mkIf osConfig.programs.sway.enable {
# Make focused window fullscreen # Make focused window fullscreen
"${mod}+f" = "fullscreen"; "${mod}+f" = "fullscreen";
# Start launcher # Start launcher
"${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel"; "${mod}+d" = "exec ${getExe desktop.runner.package}";
"${mod}+s" = "${mod}+s" =
let let
cliphist = getExe pkgs.cliphist; cliphist = getExe pkgs.cliphist;
fuzzel = getExe pkgs.fuzzel;
copy = getExe' pkgs.wl-clipboard "wl-copy"; copy = getExe' pkgs.wl-clipboard "wl-copy";
in in
mkIf cliphistEnabled "exec ${cliphist} list | ${fuzzel} --dmenu | ${cliphist} decode | ${copy}"; mkIf cliphistEnabled "exec ${cliphist} list | ${desktop.runner.dmenu} | ${cliphist} decode | ${copy}";
# Toggle the current focus between tiling and floating mode # Toggle the current focus between tiling and floating mode
"${mod}+Shift+space" = "floating toggle"; "${mod}+Shift+space" = "floating toggle";
"${mod}+Return" = "exec ${term}"; "${mod}+Return" = "exec ${term}";
@ -144,7 +142,9 @@ lib.mkIf osConfig.programs.sway.enable {
}; };
seat = { seat = {
"*" = { "*" = {
xcursor_theme = "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}"; #xcursor_theme = mkIf (
#config ? home.pointerCursor.name
#) "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}";
keyboard_grouping = "none"; keyboard_grouping = "none";
}; };
}; };

View file

@ -1,9 +1,4 @@
{ { pkgs, lib, ... }:
pkgs,
config,
lib,
...
}:
let let
inherit (lib.my) validatePath; inherit (lib.my) validatePath;
in in

31
home/themes/vanilla.nix Normal file
View file

@ -0,0 +1,31 @@
{ pkgs, lib, ... }:
{
dconf = {
enable = true;
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
};
gtk = {
enable = true;
theme = {
name = "Adwaita";
package = pkgs.gnome-themes-extra;
};
};
qt = {
enable = true;
style = {
package = pkgs.adwaita-qt;
name = "Adwaita-dark";
};
};
home.pointerCursor = lib.mkDefault {
gtk.enable = true;
x11.enable = true;
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 32;
};
}

View file

@ -8,5 +8,6 @@
./hyprland.nix ./hyprland.nix
./ssh.nix ./ssh.nix
./fish.nix ./fish.nix
./uwsm.nix
]; ];
} }

25
modules/programs/uwsm.nix Normal file
View file

@ -0,0 +1,25 @@
{ config, lib, ... }:
let
inherit (lib) mkIf;
cfg = config.programs.uwsm;
in
{
config = mkIf cfg.enable {
services.dbus.implementation = lib.mkForce "dbus";
programs.uwsm = {
waylandCompositors = {
hyprland = mkIf config.programs.hyprland.enable {
prettyName = "Hyprland";
comment = "Hyprland compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/Hyprland";
};
sway = mkIf config.programs.sway.enable {
prettyName = "Sway";
comment = "Sway compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/sway";
};
};
};
};
}

View file

@ -29,7 +29,7 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
systemd.user.services.cliphist = { systemd.user.services.cliphist = {
description = "Clipboard management daemon"; description = "Clipboard management daemon";
partOf = [ "graphical-session.target" ]; after = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ]; wantedBy = [ "graphical-session.target" ];
serviceConfig = { serviceConfig = {

View file

@ -27,8 +27,7 @@ in
pkgs.networkmanager pkgs.networkmanager
]; ];
wantedBy = [ "graphical-session.target" ]; wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ]; after = [ "graphical-session.target" ];
after = [ "graphical-session-pre.target" ];
serviceConfig = { serviceConfig = {
Type = "simple"; Type = "simple";

View file

@ -85,8 +85,7 @@ in
systemd.user.services.tailscale-system-tray = mkIf cfg.systemTray { systemd.user.services.tailscale-system-tray = mkIf cfg.systemTray {
description = "tailscale system tray"; description = "tailscale system tray";
wantedBy = [ "graphical-session.target" ]; wantedBy = [ "graphical-session.target" ];
wants = [ "graphical-session.target" ]; after = [ "graphical-session.target" ];
after = [ "graphical-session-pre.target" ];
path = [ pkgs.polkit ]; path = [ pkgs.polkit ];
serviceConfig = { serviceConfig = {
Type = "simple"; Type = "simple";

View file

@ -10,5 +10,18 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.firewall = mkIf config.modules.system.roles.desktop.enable {
# if packets are still dropped, they will show up in dmesg
logReversePathDrops = true;
# wireguard trips rpfilter up
extraCommands = ''
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN
'';
extraStopCommands = ''
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true
'';
};
}; };
} }

View file

@ -6,7 +6,8 @@
}: }:
let let
inherit (lib) mkEnableOption mkOption mkIf; inherit (lib) mkEnableOption mkOption mkIf;
inherit (lib.types) package; inherit (lib.types) package str;
inherit (lib.my) getExe;
cfg = config.modules.system.roles.desktop; cfg = config.modules.system.roles.desktop;
in in
{ {
@ -26,6 +27,24 @@ in
default = pkgs.nautilus; default = pkgs.nautilus;
description = ''''; description = '''';
}; };
runner = {
package = mkOption {
type = package;
default = pkgs.fuzzel;
description = ''
The runner to use.
'';
};
dmenu = mkOption {
type = str;
default = "--dmenu";
apply = val: "${getExe cfg.runner.package} ${val}";
description = ''
Flags necessary to execute the runner in its dmenu compatibility mode.
'';
};
};
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.systemPackages = [ environment.systemPackages = [