Add support for the system76 launch keyboard configurator.

This commit is contained in:
Tom Alexander
2025-01-14 20:16:06 -05:00
parent 63408f5664
commit 5a5839482d
5 changed files with 958 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
...
}:
let
start_sway_session = pkgs.writeTextFile {
name = "start_sway_session.conf";
text = ''
# Trigger graphical-session.target through sway-session.target so systemd user units can depend on it.
exec systemctl --user start sway-session.target
'';
};
in
{
imports = [ ];
me.swayIncludes = lib.mkAfter [
start_sway_session
];
}