Restructured nixos home-manager config

This commit is contained in:
Random936
2025-02-09 10:47:35 -08:00
parent deb4233b93
commit fceb1282f0
13 changed files with 203 additions and 186 deletions

9
home/modules/tmux.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, lib, config, ... }: let
mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config };
in {
home.packages = with pkgs [ tmux ];
home.file = {
"tmux/plugins/tpm".source = "${mypkgs.tpm}";
".tmux.conf".source = ../../dotfiles/.tmux.conf;
};
}