nixos-config/user/sway/kanshi.nix
2024-06-05 01:20:42 -03:00

52 lines
852 B
Nix

{
config,
pkgs,
lib,
...
}:
let
inherit (config.my)
key
accent
font
theme
;
inherit (theme) color;
in
{
services.kanshi = {
settings = [
{
profile = {
name = "sedetary";
outputs = [
{
criteria = "eDP-1";
status = "disable";
position = "1920,312";
}
{
criteria = "HDMI-A-1";
position = "0,0";
}
];
exec = [ "xrdb .Xresources" ];
};
}
{
profile = {
name = "nomad";
outputs = [
{
criteria = "eDP-1";
status = "enable";
position = "1920,312";
}
];
exec = [ "xrdb .Xresources" ];
};
}
];
};
}