nix-config/modules/system/home/niri-setup/default.nix
2024-03-14 00:43:16 +01:00

55 lines
1,001 B
Nix

{ lib, osConfig, pkgs, ... }: lib.mkIf (osConfig.withNiri) {
home.packages = with pkgs; [
polkit_gnome
dconf
];
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
};
programs.fuzzel= {
enable = true;
settings = {
colors = {
background = "191724ee";
text = "e0def4ff";
match = "eb6f92ff";
selection = "524f67ee";
selection-text = "e0def4ff";
selection-match = "eb6f92ff";
border = "26233aff";
};
};
};
programs.waybar = {
enable = true;
settings = {
mainBar = {
layer = "top";
position = "top";
modules-left = [
];
modules-center = [
"clock"
];
modules-right = [
];
};
};
};
services.mako = {
enable = true;
backgroundColor = "#191724ee";
borderColor = "#26233a";
};
}