dotfiles/modules/cli/bin/default.nix

16 lines
552 B
Nix
Raw Normal View History

2021-12-26 23:34:42 +01:00
{ config, lib, pkgs, ... }:
let
cheat = import ./cheat.nix { inherit pkgs; };
cycleSinks = import ./cycleSinks.nix { inherit pkgs; };
git-switch = import ./git-switch.nix { inherit pkgs; };
2021-12-26 23:34:42 +01:00
protonge = import ./protonge.nix { inherit pkgs; };
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; };
2022-02-07 15:30:54 +01:00
in
{
2021-12-26 23:34:42 +01:00
home-manager.users.moritz.home.packages =
[ cheat cycleSinks git-switch protonge randomWallpaper share sxhkdHelp ];
2021-12-26 23:34:42 +01:00
}