13 lines
168 B
Nix
13 lines
168 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.xdg-autostart.homeManagerModules.xdg-autostart
|
|
];
|
|
|
|
xdg.autoStart.packages = with pkgs; [
|
|
equibop
|
|
];
|
|
}
|