mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
user: package and ssh fixes
This commit is contained in:
parent
16a9362aba
commit
3fddc4e807
|
@ -7,6 +7,13 @@ let
|
|||
inherit (prev) python3Packages;
|
||||
in
|
||||
{
|
||||
|
||||
pcmanfm = prev.pcmanfm.overrideAttrs (_: {
|
||||
# remove deskop preferences shortcut
|
||||
postInstall = ''
|
||||
rm $out/share/applications/pcmanfm-desktop-pref.desktop
|
||||
'';
|
||||
});
|
||||
pww = callPackage ../pkgs/pww { };
|
||||
ianny = callPackage ../pkgs/ianny { };
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
(python3.withPackages (ps: with ps; [
|
||||
pyls-isort
|
||||
pylsp-mypy
|
||||
python-lsp-black
|
||||
# python-lsp-black
|
||||
python-lsp-server
|
||||
|
||||
# pylsp optional dependencies
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
mosh
|
||||
typst
|
||||
typst-preview
|
||||
hut
|
||||
|
||||
# programming languages
|
||||
cargo
|
||||
|
@ -55,6 +56,7 @@
|
|||
nodejs_20
|
||||
gnumake
|
||||
go
|
||||
pre-commit
|
||||
|
||||
# fancy tools
|
||||
just
|
||||
|
|
|
@ -21,6 +21,10 @@ in
|
|||
match = "Host github.com User git";
|
||||
identityFile = git;
|
||||
};
|
||||
"git@git.sr.ht" = {
|
||||
match = "Host git.sr.ht User git";
|
||||
identityFile = git;
|
||||
};
|
||||
# iFSR
|
||||
"fsr" = {
|
||||
hostname = "ifsr.de";
|
||||
|
|
Loading…
Reference in a new issue