8 lines
126 B
Nix
8 lines
126 B
Nix
|
{
|
||
|
flake.modules.homeManager.base =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.packages = with pkgs; [ tmux-sessionizer ];
|
||
|
};
|
||
|
}
|