dotfiles/modules/cli/bin/default.nix

13 lines
429 B
Nix
Raw Normal View History

2021-12-26 23:34:42 +01:00
{ config, lib, pkgs, ... }:
let
cycleSinks = import ./cycleSinks.nix { inherit pkgs; };
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-03-21 13:20:46 +01:00
in {
2022-06-27 17:57:42 +02:00
home-manager.users.moritz.home.packages =
[ cycleSinks protonge randomWallpaper share sxhkdHelp ];
2021-12-26 23:34:42 +01:00
}