Merge branch 'overhaul' of https://github.com/KoenDR06/nix-config into overhaul

This commit is contained in:
KoenDR06 2025-06-12 23:17:01 +02:00
commit 45d1b3c25c
4 changed files with 6 additions and 7 deletions

View file

@ -5,4 +5,4 @@ initial_window_height 24c
enable_audio_bell no enable_audio_bell no
confirm_os_window_close 0 confirm_os_window_close 0
background_opacity 0.4 background_opacity 0.7

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 MiB

After

Width:  |  Height:  |  Size: 532 KiB

Before After
Before After

View file

@ -29,7 +29,10 @@ in {
jetbrains.rider jetbrains.rider
jetbrains.rust-rover jetbrains.rust-rover
jetbrains.webstorm jetbrains.webstorm
kotlin
kotlin-language-server
mono mono
nixd
nodejs_22 nodejs_22
platformio-core platformio-core
python313 python313

View file

@ -6,6 +6,7 @@
}: { }: {
programs.helix = { programs.helix = {
enable = true; enable = true;
defaultEditor = true;
settings = { settings = {
theme = "catppuccin_macchiato"; theme = "catppuccin_macchiato";
editor.cursor-shape = { editor.cursor-shape = {
@ -14,11 +15,6 @@
select = "underline"; select = "underline";
}; };
}; };
languages.language = [ languages.language = [];
{
name = "nix";
auto-format = false;
}
];
}; };
} }