nix-config/home/_mixins/desktop/deckmaster-xl.nix
Greg Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

27 lines
671 B
Nix

{ config, pkgs, ... }:
{
# https://github.com/muesli/deckmaster
home = {
file = {
"${config.xdg.configHome}/autostart/deskmaster-xl.desktop".text = "
[Desktop Entry]
Name=Deckmaster XL
Comment=Deckmaster XL
Type=Application
Exec=deckmaster -deck ${config.home.homeDirectory}/Studio/StreamDeck/Deckmaster-xl/main.deck
Categories=
Terminal=false
NoDisplay=true
StartupNotify=false";
};
# Deckmaster and the utilities I bind to the Stream Deck
packages = with pkgs; [
bc
deckmaster
hueadm
libnotify
unstable.obs-cli
playerctl
];
};
}