the great with purge

This commit is contained in:
Charlie Root 2025-04-06 22:45:09 +02:00
commit 5767763227
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
8 changed files with 49 additions and 48 deletions

View file

@ -95,27 +95,27 @@
select-word = "BTN_LEFT-2";
select-word-whitespace = "Control+BTN_LEFT-2";
};
colors = with colours; {
background = base00; # base color
foreground = base05; # text color
colors = {
background = colours.base00; # base color
foreground = colours.base05; # text color
regular0 = base03; # black
regular1 = base08; # red
regular2 = base0B; # green
regular3 = base0A; # yellow
regular4 = base0D; # blue
regular5 = base0F; #magenta
regular6 = base0C; #cyan
regular7 = base06; #white
regular0 = colours.base03; # black
regular1 = colours.base08; # red
regular2 = colours.base0B; # green
regular3 = colours.base0A; # yellow
regular4 = colours.base0D; # blue
regular5 = colours.base0F; #magenta
regular6 = colours.base0C; #cyan
regular7 = colours.base06; #white
bright0 = base04; # Surface 2
bright1 = base08; # red
bright2 = base0B; # green
bright3 = base0A; # yellow
bright4 = base0D; # blue
bright5 = base0F; # pink
bright6 = base0C; # teal
bright7 = base07; # Subtext 0
bright0 = colours.base04; # Surface 2
bright1 = colours.base08; # red
bright2 = colours.base0B; # green
bright3 = colours.base0A; # yellow
bright4 = colours.base0D; # blue
bright5 = colours.base0F; # pink
bright6 = colours.base0C; # teal
bright7 = colours.base07; # Subtext 0
alpha = 1.0;
};

View file

@ -3,9 +3,10 @@
lib,
pkgs,
...
}:
with lib; let
}: let
cfg = config.modules.programs.minecraft;
inherit (lib.options) mkEnableOption;
inherit (lib.modules) mkIf;
in {
options.modules.programs.minecraft = {
enable = mkEnableOption "minecraft";