ahuston-0 ec4a9cf623 fix statix issue, migrate non-essential packages to non-server
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-05-29 01:59:49 +00:00

8 lines
170 B
Nix

{ lib, machineConfig, ... }:
lib.mkIf (!machineConfig.server) {
programs.waybar = {
enable = true;
#settings = builtins.fromJSON (import ./waybar.json);
};
}