fix: or at least try to fix waybar not showing up
This commit is contained in:
parent
d6c549c1a2
commit
0f69de605e
3 changed files with 6 additions and 4 deletions
|
|
@ -15,6 +15,7 @@
|
||||||
# inherit ./hyprland.nix;
|
# inherit ./hyprland.nix;
|
||||||
home.username = "rhea";
|
home.username = "rhea";
|
||||||
home.homeDirectory = "/home/rhea";
|
home.homeDirectory = "/home/rhea";
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
|
|
||||||
|
package = pkgs.waybar;
|
||||||
|
|
||||||
style = ./waybar.css;
|
style = ./waybar.css;
|
||||||
settings = {
|
settings = {
|
||||||
mainBar = {
|
mainBar = {
|
||||||
|
|
@ -76,9 +80,6 @@
|
||||||
clock = {
|
clock = {
|
||||||
"format-alt" = "{:%a, %d. %b %H:%M}";
|
"format-alt" = "{:%a, %d. %b %H:%M}";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@
|
||||||
pkgs.xdg-desktop-portal-hyprland
|
pkgs.xdg-desktop-portal-hyprland
|
||||||
];
|
];
|
||||||
# TODO: I should probably set `xdg.portal.config` or `xdg.portal.configPackages` here, but for now this works...
|
# TODO: I should probably set `xdg.portal.config` or `xdg.portal.configPackages` here, but for now this works...
|
||||||
config.common.default = "*";
|
# config.common.default = "*";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue