sisyphus/nixos/modules/utils/zellij/default.nix

17 lines
270 B
Nix
Raw Normal View History

2023-03-28 23:59:10 +02:00
{ config, pkgs, lib, ... }:
{
2023-06-24 14:01:21 +02:00
home-manager.users.tdpeuter.home = {
packages = with pkgs; [
zellij
];
file.".config/zellij".source = ../../../../stow/zellij/.config/zellij;
};
2023-08-12 08:26:58 +02:00
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
];
2023-03-28 23:59:10 +02:00
}