mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
18 lines
344 B
Nix
18 lines
344 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
imports =
|
|
[(import ./scripts.nix)];
|
|
|
|
programs.waybar = {
|
|
enable = true;
|
|
package = pkgs.waybar.overrideAttrs (oa: {
|
|
mesonFlags = (oa.mesonFlags or [ ]) ++ [ "-Dexperimental=true" ];
|
|
});
|
|
systemd = {
|
|
enable = false;
|
|
target = "graphical-session.target";
|
|
};
|
|
};
|
|
}
|
|
|