AGS: Full AGS config directory init Autostart: Created myAutostartCommands var to programmatically define all commands to be started when Hyprland initiates this includes firefox, thunderbird, and a terminal to be set in the special Hyprland workspace
10 lines
143 B
Nix
10 lines
143 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
config = {
|
|
#home.packages = with pkgs; [ ags ];
|
|
myAutostartCommands = ["${pkgs.ags}/bin/ags"];
|
|
};
|
|
}
|