2021-12-26 23:34:42 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cheat = import ./cheat.nix { inherit pkgs; };
|
|
|
|
cycleSinks = import ./cycleSinks.nix { inherit pkgs; };
|
2022-02-07 14:20:56 +01:00
|
|
|
git-switch = import ./git-switch.nix { inherit pkgs; };
|
2021-12-26 23:34:42 +01:00
|
|
|
protonge = import ./protonge.nix { inherit pkgs; };
|
2022-02-07 14:20:56 +01:00
|
|
|
randomWallpaper = import ./randomWallpaper.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-02-07 14:20:56 +01:00
|
|
|
[ cheat cycleSinks git-switch protonge randomWallpaper share sxhkdHelp ];
|
2021-12-26 23:34:42 +01:00
|
|
|
}
|