11 lines
201 B
Nix
11 lines
201 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home-manager.users.tdpeuter.home = {
|
|
packages = with pkgs; [
|
|
zellij
|
|
];
|
|
|
|
file.".config/zellij".source = ../../../../stow/zellij/.config/zellij;
|
|
};
|
|
}
|