Update a bunch of things to fix the flake lock update, conduwuit is broken rn

This commit is contained in:
Lillian Violet 2024-05-25 16:30:53 +02:00
parent 77b2b41c3a
commit b0af058fca
16 changed files with 438 additions and 107 deletions

View file

@ -4,7 +4,7 @@
...
}: {
programs.starship = let
flavour = "macchiato"; # One of `latte`, `frappe`, `macchiato`, or `mocha`
flavor = "macchiato"; # One of `latte`, `frappe`, `macchiato`, or `mocha`
in {
enable = true;
settings =
@ -35,7 +35,7 @@
git_branch.style = "bold blue";
directory.style = "bold blue";
direnv.disabled = false;
palette = "catppuccin_${flavour}";
palette = "catppuccin_${flavor}";
}
// builtins.fromTOML (builtins.readFile
(pkgs.fetchFromGitHub
@ -45,6 +45,6 @@
rev = "5629d23"; # Replace with the latest commit hash
sha256 = "sha256-nsRuxQFKbQkyEI4TXgvAjcroVdG+heKX5Pauq/4Ota0=";
}
+ /palettes/${flavour}.toml));
+ /palettes/${flavor}.toml));
};
}