chore: move script.nix as default.nix

This commit is contained in:
2025-05-04 14:27:15 +02:00
parent d5e06f3f49
commit 5254cde754
2 changed files with 1 additions and 1 deletions

18
users/scripts/default.nix Normal file
View File

@@ -0,0 +1,18 @@
{
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;})
]