adds missing import

This commit is contained in:
Dennis Schoepf 2025-12-09 18:13:41 +01:00
parent 6e2c6f61ac
commit c844e332fd
2 changed files with 35 additions and 26 deletions

View file

@ -57,8 +57,17 @@
};
};
# Device specific overlays
# Overlays for all devices are defined
# in modules/default.nix
nixpkgs.overlays = [
inputs.zellij-switch.overlays.default
];
# System Packages
environment.systemPackages = lib.mkAfter (with pkgs; []);
environment.systemPackages = lib.mkAfter (with pkgs; [
zellij-switch
]);
# Enable some services that do not need configuration
services.openssh.enable = true;