Compare commits

..

No commits in common. "c898cccbf0262cf4249d2bf2e2a5860d32e34cb2" and "be937b44978b1f79a23cf84a22b0b5e93d0a68f1" have entirely different histories.

2 changed files with 6 additions and 16 deletions

View file

@ -1,31 +1,24 @@
{ pkgs, ... }: { { pkgs, ... }: {
gtk = { gtk = {
enable = true; enable = true;
font = { font = {
name = "Inter"; name = "Inter";
package = pkgs.inter; package = pkgs.inter;
size = 10; size = 10;
}; };
iconTheme = { iconTheme = {
name = "Catppuccino-Mocha-Dark"; name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders.override { package = pkgs.papirus-icon-theme;
flavor = "mocha";
accent = "blue";
}; };
};
theme = { theme = {
name = "Catppuccin-Mocha-Compact-Blue-Dark"; name = "Catppuccin-Mocha-Compact-Blue-Dark";
package = pkgs.catppuccin-gtk.override { package = pkgs.catppuccin-gtk.override {
tweaks = [ "rimless" "normal" ];
accents = [ "blue" ]; accents = [ "blue" ];
variant = "mocha";
size = "compact"; size = "compact";
tweaks = [ "rimless" "normal" ];
variant = "mocha";
}; };
}; };
}; };
home.pointerCursor = { home.pointerCursor = {

View file

@ -7,7 +7,6 @@ let
sha256 = "1g2r6j33f4zys853i1c5gnwcdbwb6xv5w6pazfdslxf69904lrg9"; sha256 = "1g2r6j33f4zys853i1c5gnwcdbwb6xv5w6pazfdslxf69904lrg9";
}; };
in { in {
programs.bat = { programs.bat = {
enable = true; enable = true;
themes = { themes = {
@ -40,25 +39,23 @@ in {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu laurent@neodymium"; "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu laurent@neodymium";
}; };
}; };
programs.direnv = { programs.direnv = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
nix-direnv.enable = true; nix-direnv.enable = true;
}; };
programs.atuin = { programs.atuin = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
settings = { sync_address = "https://atuin.fainsin.bzh"; }; settings = { sync_address = "https://atuin.fainsin.bzh"; };
}; };
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableAutosuggestions = true; enableAutosuggestions = true;
enableSyntaxHighlighting = true; enableSyntaxHighlighting = true;
enableCompletion = true; enableCompletion = true;
sessionVariables = { sessionVariables = {
MANPAGER = "micro";
VISUAL = "micro"; VISUAL = "micro";
EDITOR = "micro"; EDITOR = "micro";
WORDCHARS = "*?_-.[]~=&;!#$%^(){}<>"; WORDCHARS = "*?_-.[]~=&;!#$%^(){}<>";
@ -76,6 +73,7 @@ in {
bindkey "^[[1;3D" backward-word bindkey "^[[1;3D" backward-word
bindkey '^H' backward-kill-word bindkey '^H' backward-kill-word
bindkey '5~' kill-word bindkey '5~' kill-word
# eval "$(atuin init zsh)"
''; '';
plugins = [ plugins = [
{ {
@ -100,5 +98,4 @@ in {
} }
]; ];
}; };
} }