mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
20 lines
488 B
Nix
20 lines
488 B
Nix
{ config, username, ... }:
|
|
{
|
|
# https://github.com/muesli/deckmaster
|
|
imports = [
|
|
../console/decktrunk.nix
|
|
];
|
|
|
|
home.file = {
|
|
"${config.xdg.configHome}/autostart/deskmaster-xl.desktop".text = "
|
|
[Desktop Entry]
|
|
Name=Deckmaster XL
|
|
Comment=Deckmaster XL
|
|
Type=Application
|
|
Exec=deckmaster -deck /home/${username}/Studio/StreamDeck/Deckmaster-xl/main.deck
|
|
Categories=
|
|
Terminal=false
|
|
NoDisplay=true
|
|
StartupNotify=false";
|
|
};
|
|
}
|