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;
|
inherit (prev) python3Packages;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
pcmanfm = prev.pcmanfm.overrideAttrs (_: {
|
||||||
|
# remove deskop preferences shortcut
|
||||||
|
postInstall = ''
|
||||||
|
rm $out/share/applications/pcmanfm-desktop-pref.desktop
|
||||||
|
'';
|
||||||
|
});
|
||||||
pww = callPackage ../pkgs/pww { };
|
pww = callPackage ../pkgs/pww { };
|
||||||
ianny = callPackage ../pkgs/ianny { };
|
ianny = callPackage ../pkgs/ianny { };
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
(python3.withPackages (ps: with ps; [
|
(python3.withPackages (ps: with ps; [
|
||||||
pyls-isort
|
pyls-isort
|
||||||
pylsp-mypy
|
pylsp-mypy
|
||||||
python-lsp-black
|
# python-lsp-black
|
||||||
python-lsp-server
|
python-lsp-server
|
||||||
|
|
||||||
# pylsp optional dependencies
|
# pylsp optional dependencies
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
mosh
|
mosh
|
||||||
typst
|
typst
|
||||||
typst-preview
|
typst-preview
|
||||||
|
hut
|
||||||
|
|
||||||
# programming languages
|
# programming languages
|
||||||
cargo
|
cargo
|
||||||
|
@ -55,6 +56,7 @@
|
||||||
nodejs_20
|
nodejs_20
|
||||||
gnumake
|
gnumake
|
||||||
go
|
go
|
||||||
|
pre-commit
|
||||||
|
|
||||||
# fancy tools
|
# fancy tools
|
||||||
just
|
just
|
||||||
|
|
|
@ -21,6 +21,10 @@ in
|
||||||
match = "Host github.com User git";
|
match = "Host github.com User git";
|
||||||
identityFile = git;
|
identityFile = git;
|
||||||
};
|
};
|
||||||
|
"git@git.sr.ht" = {
|
||||||
|
match = "Host git.sr.ht User git";
|
||||||
|
identityFile = git;
|
||||||
|
};
|
||||||
# iFSR
|
# iFSR
|
||||||
"fsr" = {
|
"fsr" = {
|
||||||
hostname = "ifsr.de";
|
hostname = "ifsr.de";
|
||||||
|
|
Loading…
Reference in a new issue