hopefully fixing things

This commit is contained in:
Charlie Root 2024-05-15 12:24:53 +02:00
commit 42a08f5005
4 changed files with 7 additions and 6 deletions

View file

@ -50,9 +50,9 @@
}; };
services = { pipewire.enable = true; }; services = { pipewire.enable = true; };
themes = { themes = {
gtk = { enable = true; }; gtk = { enable = false; };
qt = { qt = {
enable = true; enable = false;
package = pkgs.kde-gruvbox; package = pkgs.kde-gruvbox;
name = "Gruvbox-Dark"; name = "Gruvbox-Dark";
}; };

View file

@ -83,7 +83,7 @@ in {
spotube spotube
steam steam
strawberry strawberry
svls # svls
teamspeak_client teamspeak_client
telegram-desktop telegram-desktop
texliveFull texliveFull

View file

@ -59,7 +59,7 @@ in {
cc = "cd ~ && clear"; cc = "cd ~ && clear";
mv = "mv -iv"; mv = "mv -iv";
rm = "trash -v"; rm = "trash -v";
ls = "eza --icons"; # ls = "eza --icons";
l = "eza -a --icons"; l = "eza -a --icons";
la = "eza -lha --icons --git"; la = "eza -lha --icons --git";
kys = "shutdown now"; kys = "shutdown now";
@ -68,7 +68,7 @@ in {
v = "nvim"; v = "nvim";
h = "hx"; h = "hx";
e = "emacs"; e = "emacs";
update = ''nh os switch "${gitPath}"''; # update = ''nh os switch "${gitPath}"'';
flake = "cd '${gitPath}'"; flake = "cd '${gitPath}'";
} // cfg.extraAliases; } // cfg.extraAliases;
}; };

View file

@ -18,6 +18,7 @@ in {
lsp.display-messages = true; lsp.display-messages = true;
cursor-shape = { insert = "bar"; }; cursor-shape = { insert = "bar"; };
statusline.left = statusline.left =
[ "mode" "spinner" "version-control" "file-name" ]; [ "mode" "spinner" "version-control" "file-name" ];
}; };
keys.normal = { keys.normal = {
@ -33,7 +34,7 @@ in {
languages.language = [{ languages.language = [{
name = "nix"; name = "nix";
auto-format = true; auto-format = true;
formatter.command = "${pkgs.nixfmt}/bin/nixfmt"; formatter.command = "${pkgs.nixfmt-classic}/bin/nixfmt";
}]; }];
}; };
}; };