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