fixes packages not avialable

This commit is contained in:
Dennis Schoepf 2025-12-06 17:45:11 +01:00
parent 602685e775
commit 825a1abe57
3 changed files with 11 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, ... }:
{
xdg.configFile."zellij/config.kdl" = {
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/dev/nix-config/modules/zellij/config.kdl";
@ -12,4 +12,9 @@
enable = true;
enableFishIntegration = true;
};
environment.systemPackages = lib.mkAfter (with pkgs; [
zellij
zellij-switch
]);
}