some refactoring

This commit is contained in:
Sascha Koenig
2025-07-20 15:13:26 +02:00
parent 2715ddc617
commit 578bfd527f
6 changed files with 106 additions and 102 deletions

View File

@ -12,6 +12,7 @@
torch torch
srt srt
])) ]))
pyrefly
nixd nixd
alejandra alejandra
tailwindcss tailwindcss

View File

@ -43,7 +43,7 @@ in {
}; };
}; };
Python = { Python = {
language_servers = ["pyright"]; language_servers = ["pyrefly"];
formatter = { formatter = {
external = { external = {
command = "black"; command = "black";
@ -52,6 +52,16 @@ in {
}; };
}; };
}; };
lsp = {
"pyrefly" = {
command = {
path = "pyrefly";
args = ["--lsp"];
env = {};
};
settings = {};
};
};
context_servers = { context_servers = {
"some-context-server" = { "some-context-server" = {
command = { command = {

View File

@ -9,8 +9,7 @@
./office.nix ./office.nix
./rofi.nix ./rofi.nix
./theme.nix ./theme.nix
./wayland.nix ./waybar.nix
./wofi.nix
]; ];
xdg = { xdg = {
@ -72,8 +71,9 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
appimage-run appimage-run
# anytype anytype
# blueberry # blueberry
bemoji
brave brave
# brightnessctl # brightnessctl
# clipman # clipman
@ -81,7 +81,6 @@
# eww # eww
# firefox-devedition # firefox-devedition
file-roller file-roller
google-chrome
hyprpanel hyprpanel
seahorse seahorse
sushi sushi

View File

@ -15,7 +15,7 @@ in {
gamescope gamescope
goverlay goverlay
mangohud mangohud
protonup-ng protonplus
]; ];
}; };
} }

View File

@ -1,6 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
wofi
bemoji
];
}