Evie Litherland-Smith
6bc0cbdc4f
Move sway to desktop/sway and move other packages under programs/sway up a level to programs/desktop, add niri config to desktop/niri and refactor common desktop imports into desktop/default.nix that also imports (for now at least) sway and niri modules Move wallpapers into programs/desktop since that's where they're needed anyway Add helper script to call swaybg with arguments
45 lines
1,000 B
Nix
45 lines
1,000 B
Nix
{
|
|
config,
|
|
fonts,
|
|
...
|
|
}: {
|
|
programs.foot = {
|
|
enable = true;
|
|
server.enable = true;
|
|
settings = {
|
|
main = {
|
|
locked-title = false;
|
|
font = "${fonts.monospace.name}:size=${toString fonts.sizes.applications}";
|
|
dpi-aware = false;
|
|
};
|
|
bell = {
|
|
urgent = false;
|
|
notify = false;
|
|
visual = false;
|
|
};
|
|
cursor = {blink = true;};
|
|
mouse = {hide-when-typing = true;};
|
|
colors = with config.scheme; rec {
|
|
background = base00;
|
|
foreground = base05;
|
|
regular0 = base02;
|
|
regular1 = red;
|
|
regular2 = green;
|
|
regular3 = yellow;
|
|
regular4 = blue;
|
|
regular5 = magenta;
|
|
regular6 = cyan;
|
|
regular7 = base05;
|
|
bright0 = base03;
|
|
bright1 = regular1;
|
|
bright2 = regular2;
|
|
bright3 = regular3;
|
|
bright4 = regular4;
|
|
bright5 = regular5;
|
|
bright6 = regular6;
|
|
bright7 = base04;
|
|
};
|
|
};
|
|
};
|
|
}
|