mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: changes from the last while
This commit is contained in:
parent
9255d543a1
commit
b7c510de28
27 changed files with 885 additions and 195 deletions
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
calibre
|
||||
okular
|
||||
pkgs.kdePackages.okular
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
extensions = with pkgs.vscode-extensions; [
|
||||
vscodevim.vim
|
||||
catppuccin.catppuccin-vsc
|
||||
github.copilot
|
||||
kamadorueda.alejandra
|
||||
mkhl.direnv
|
||||
hashicorp.terraform
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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@")
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue