helix setup

This commit is contained in:
Charlie Root 2024-08-05 16:22:19 +02:00
commit 8a2ace8849
6 changed files with 7 additions and 8 deletions

View file

@ -121,6 +121,7 @@ No Idea at this point
*heavily* inspired by https://git.jacekpoz.pl/jacekpoz/niksos.git ! *heavily* inspired by https://git.jacekpoz.pl/jacekpoz/niksos.git !
Sioodmy: https://github.com/sioodmy/dotfiles Sioodmy: https://github.com/sioodmy/dotfiles
Heinrik Lissner: https://github.com/hlissner/dotfiles/ Heinrik Lissner: https://github.com/hlissner/dotfiles/
Fufexan: https://github.com/fufexan
Lokasku: https://github.com/lokasku/nix-config Lokasku: https://github.com/lokasku/nix-config
NotAShelf: https://github.com/notashelf/Nyx NotAShelf: https://github.com/notashelf/Nyx
Wallpapers: https://github.com/zhichaoh/catppuccin-wallpapers?tab=readme-ov-file Wallpapers: https://github.com/zhichaoh/catppuccin-wallpapers?tab=readme-ov-file

View file

@ -37,7 +37,7 @@
}; };
discord.enable = true; discord.enable = true;
firefox.enable = true; firefox.enable = true;
spotify.enable = true; # spotify.enable = true;
zathura.enable = true; zathura.enable = true;
zellij.enable = true; zellij.enable = true;
terminals = { terminals = {

View file

@ -82,7 +82,6 @@ in {
scc scc
scummvm scummvm
sherlock sherlock
shotwell
signal-desktop-beta signal-desktop-beta
smartmontools smartmontools
teamspeak_client teamspeak_client

View file

@ -13,6 +13,7 @@ in {
home-manager.users.${username} = { home-manager.users.${username} = {
programs.helix = { programs.helix = {
enable = true; enable = true;
# thanks fuf, this is great!
package = inputs'.helix.packages.default.overrideAttrs (previousAttrs: { package = inputs'.helix.packages.default.overrideAttrs (previousAttrs: {
makeWrapperArgs = with pkgs; makeWrapperArgs = with pkgs;
previousAttrs.makeWrapperArgs previousAttrs.makeWrapperArgs
@ -32,7 +33,6 @@ in {
]; ];
}); });
settings = { settings = {
# theme = "catppuccin_mocha";
editor = { editor = {
indent-guides.render = true; indent-guides.render = true;
lsp.display-inlay-hints = true; lsp.display-inlay-hints = true;

View file

@ -35,12 +35,11 @@ in {
pad = "5x5 center"; pad = "5x5 center";
resize-delay-ms = 100; resize-delay-ms = 100;
notify = "${pkgs.libnotify}/bin/notify-send -a \${app-id} -i \${app-id} \${title} \${body}";
bold-text-in-bright = "no"; bold-text-in-bright = "no";
word-delimiters = '',`|:"'()[]{}<>''; word-delimiters = '',`|:"'()[]{}<>'';
selection-target = "primary"; selection-target = "primary";
}; };
desktop-notifications.command = "${pkgs.libnotify}/bin/notify-send -a \${app-id} -i \${app-id} \${title} \${body}";
bell = { bell = {
urgent = "yes"; urgent = "yes";
notify = "yes"; notify = "yes";

View file

@ -1,8 +1,8 @@
{ {
services.xserver = { services.xserver = {
layout = "de,us"; layout = "de,us";
xkbVariant = ",cmk_ed_dh"; # xkbVariant = ",cmk_ed_dh";
xkbModel = ",pc105awide"; # xkbModel = ",pc105awide";
xkbOptions = ",misc:extend,lv5:caps_switch_lock,compose:menu"; # xkbOptions = ",misc:extend,lv5:caps_switch_lock,compose:menu";
}; };
} }