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
srt
]))
pyrefly
nixd
alejandra
tailwindcss

View File

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

View File

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

View File

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

View File

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