Switch to nixfmt

This commit is contained in:
SebastianStork 2024-05-19 20:00:58 +02:00
parent 1d70117186
commit b38d2df431
55 changed files with 1559 additions and 1540 deletions

View file

@ -1,22 +1,30 @@
{
assembleWrapper,
pkgs,
lib,
...
}: {theme ? "dark"}:
assembleWrapper,
pkgs,
lib,
...
}:
{
theme ? "dark",
}:
assembleWrapper {
basePackage = pkgs.rofi-wayland;
basePackage = pkgs.rofi-wayland;
flags = let
color-file =
{
dark = ./dark.rasi;
light = ./light.rasi;
}
.${theme};
rofi-config = pkgs.concatText "rofi-config" [./config.rasi color-file];
in [
"-config"
rofi-config
flags =
let
color-file =
{
dark = ./dark.rasi;
light = ./light.rasi;
}
.${theme};
rofi-config = pkgs.concatText "rofi-config" [
./config.rasi
color-file
];
in
[
"-config"
rofi-config
];
}