feat: changes from the last while

This commit is contained in:
Kat Inskip 2025-03-17 00:13:01 -07:00
parent 9255d543a1
commit b7c510de28
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
27 changed files with 885 additions and 195 deletions

View file

@ -19,9 +19,9 @@ in {
};
dark = {
schemeData = schemeSources.tinted.schemes.catppuccin-mocha;
ansi.palette.background.alpha = "ee00";
ansi.palette.background.alpha = "d000";
};
};
defaultSchemeName = "light";
defaultSchemeName = "dark";
};
}

View file

@ -1,7 +1,15 @@
_: {
{ lib, ... }: let
inherit (lib) mkForce;
in {
catppuccin = {
enable = true;
flavor = "latte";
gtk.enable = true;
flavor = "frappe";
gtk = {
enable = true;
icon.enable = true;
gnomeShellTheme = mkForce false;
};
};
dconf.settings = mkForce { };
gtk.enable = true;
}

View file

@ -1,6 +1,6 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
calibre
okular
pkgs.kdePackages.okular
];
}

View file

@ -4,7 +4,6 @@
extensions = with pkgs.vscode-extensions; [
vscodevim.vim
catppuccin.catppuccin-vsc
github.copilot
kamadorueda.alejandra
mkhl.direnv
hashicorp.terraform

View file

@ -11,6 +11,7 @@
name = "init.lua";
src = ./init.lua;
base16ShellPath = config.base16.shell.package;
catppuccin_flavour = config.catppuccin.flavor;
inherit (config.base16) defaultSchemeName;
defaultSchemeSlug = config.base16.defaultScheme.slug;
}

View file

@ -340,4 +340,4 @@ vim.keymap.set("", "F", function()
hop.hint_char1({ direction = directions.BEFORE_CURSOR, current_line_only = true })
end, {remap=true})
vim.cmd("colorscheme catppuccin-latte")
vim.cmd("colorscheme catppuccin-@catppuccin_flavour@")

View file

@ -4,12 +4,12 @@
...
}: {
programs.rbw = {
enable = false;
package = pkgs.rbw-bitw;
enable = true;
settings = {
inherit (tree.home.user.data) email;
base_url = "https://vault.kittywit.ch";
base_url = "https://bw.gensokyo.zone";
identity_url = null;
pinentry = pkgs.pinentry-gnome3;
lock_timeout = 3600;
};
};