19 lines
416 B
Nix
19 lines
416 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
askpass = import ./askpass.nix {inherit pkgs;};
|
|
in [
|
|
askpass
|
|
(import ./backup.nix {inherit pkgs;})
|
|
(import ./hyprland-autostart.nix {inherit pkgs;})
|
|
(import ./keygen.nix {inherit pkgs;})
|
|
(import ./launch-with-emacsclient.nix {
|
|
inherit pkgs;
|
|
emacsPackage = config.emacsPkg;
|
|
})
|
|
(import ./mp42webm.nix {inherit pkgs;})
|
|
(import ./sshbind.nix {inherit pkgs;})
|
|
]
|