Remove old zellij

This commit is contained in:
Tibo De Peuter 2023-10-19 21:05:14 +02:00
parent a0819d97f2
commit 1a3eb22e8a
2 changed files with 0 additions and 19 deletions

View file

@ -3,6 +3,5 @@
./home-manager
./sops
./ssh
./zellij
];
}

View file

@ -1,18 +0,0 @@
{ config, lib, pkgs, ... }:
let
cfg = config.sisyphus.programs.zellij;
in {
options.sisyphus.programs.zellij.enable = lib.mkEnableOption "Zellij";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
zellij
];
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
];
};
}