2021-12-26 23:34:42 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cheat = import ./cheat.nix { inherit pkgs; };
|
|
|
|
cycleSinks = import ./cycleSinks.nix { inherit pkgs; };
|
|
|
|
protonge = import ./protonge.nix { inherit pkgs; };
|
2022-01-21 22:03:51 +01:00
|
|
|
share = import ./share.nix { inherit pkgs; };
|
2021-12-26 23:34:42 +01:00
|
|
|
sxhkdHelp = import ./sxhkdHelp.nix { inherit pkgs; };
|
|
|
|
in {
|
|
|
|
home-manager.users.moritz.home.packages =
|
2022-01-21 22:03:51 +01:00
|
|
|
[ cheat cycleSinks protonge share sxhkdHelp ];
|
2021-12-26 23:34:42 +01:00
|
|
|
}
|