26 lines
387 B
Nix
26 lines
387 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
# let
|
|
# enable_waybar =
|
|
# if config.networking.hostName == "marty-pc" then
|
|
# true
|
|
# else if config.networking.hostName == "marty-latitude" then
|
|
# true
|
|
# else if config.networking.hostName == "marty-server" then
|
|
# false
|
|
# else
|
|
# false;
|
|
# in
|
|
|
|
{
|
|
programs = {
|
|
waybar = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|