mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
ssh & packages: cleanup
This commit is contained in:
parent
5def708423
commit
0e7abe56cf
2 changed files with 13 additions and 24 deletions
|
@ -17,7 +17,6 @@
|
||||||
(zathura.override { plugins = [ zathuraPkgs.zathura_pdf_mupdf ]; })
|
(zathura.override { plugins = [ zathuraPkgs.zathura_pdf_mupdf ]; })
|
||||||
gimp
|
gimp
|
||||||
ffmpeg
|
ffmpeg
|
||||||
imv
|
|
||||||
|
|
||||||
# bluetooth
|
# bluetooth
|
||||||
blueman
|
blueman
|
||||||
|
@ -39,12 +38,10 @@
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
neofetch # obligatory
|
|
||||||
xournalpp
|
xournalpp
|
||||||
libreoffice
|
libreoffice
|
||||||
mosh
|
mosh
|
||||||
typst
|
typst
|
||||||
typst-preview
|
|
||||||
hut
|
hut
|
||||||
|
|
||||||
# programming languages
|
# programming languages
|
||||||
|
@ -73,8 +70,6 @@
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
programs.obs-studio.enable = true;
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
programs = {
|
programs = {
|
||||||
thunderbird = {
|
thunderbird = {
|
||||||
|
@ -98,7 +93,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications =
|
defaultApplications =
|
||||||
let
|
let
|
||||||
image-viewers = [ "imv.desktop" "gimp.desktop" "swappy.desktop" "org.qutebrowser.qutebrowser.desktop" "google-chrome.desktop" ];
|
image-viewers = [ "google-chrome.desktop" "gimp.desktop" "swappy.desktop" "org.qutebrowser.qutebrowser.desktop" ];
|
||||||
browsers = [ "google-chrome.desktop" "firefox.desktop" "org.qutebrowser.qutebrowser.desktop" ];
|
browsers = [ "google-chrome.desktop" "firefox.desktop" "org.qutebrowser.qutebrowser.desktop" ];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
@ -16,7 +16,7 @@ in
|
||||||
VisualHostKey = yes
|
VisualHostKey = yes
|
||||||
'';
|
'';
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
# personal use
|
# Personal
|
||||||
"git@github.com" = {
|
"git@github.com" = {
|
||||||
match = "Host github.com User git";
|
match = "Host github.com User git";
|
||||||
identityFile = git;
|
identityFile = git;
|
||||||
|
@ -25,6 +25,16 @@ in
|
||||||
match = "Host git.sr.ht User git";
|
match = "Host git.sr.ht User git";
|
||||||
identityFile = git;
|
identityFile = git;
|
||||||
};
|
};
|
||||||
|
"*.vpn.rfive.de" = {
|
||||||
|
user = "root";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TU Dresden
|
||||||
|
"tud" = {
|
||||||
|
hostname = "login.zih.tu-dresden.de";
|
||||||
|
user = "rose159e";
|
||||||
|
};
|
||||||
|
|
||||||
# iFSR
|
# iFSR
|
||||||
"fsr" = {
|
"fsr" = {
|
||||||
hostname = "ifsr.de";
|
hostname = "ifsr.de";
|
||||||
|
@ -33,27 +43,14 @@ in
|
||||||
"quitte" = {
|
"quitte" = {
|
||||||
hostname = "quitte.ifsr.de";
|
hostname = "quitte.ifsr.de";
|
||||||
user = "root";
|
user = "root";
|
||||||
extraOptions = {
|
|
||||||
RequestTTY = "yes";
|
|
||||||
RemoteCommand = "zsh -i";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
"quitte-notty" = {
|
|
||||||
hostname = "quitte.ifsr.de";
|
|
||||||
user = "root";
|
|
||||||
};
|
};
|
||||||
"tomate" = {
|
"tomate" = {
|
||||||
hostname = "tomate.ifsr.de";
|
hostname = "tomate.ifsr.de";
|
||||||
user = "root";
|
user = "root";
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
RequestTTY = "yes";
|
ProxyJump = "tud";
|
||||||
RemoteCommand = "zsh -i";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"tomate-notty" = {
|
|
||||||
hostname = "tomate.ifsr.de";
|
|
||||||
user = "root";
|
|
||||||
};
|
|
||||||
"git@ifsr.de" = {
|
"git@ifsr.de" = {
|
||||||
match = "Host ifsr.de User git";
|
match = "Host ifsr.de User git";
|
||||||
identityFile = git;
|
identityFile = git;
|
||||||
|
@ -74,9 +71,6 @@ in
|
||||||
VerifyHostKeyDNS = "yes";
|
VerifyHostKeyDNS = "yes";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"*.vpn.rfive.de" = {
|
|
||||||
user = "root";
|
|
||||||
};
|
|
||||||
"git@git.agdsn.de" = {
|
"git@git.agdsn.de" = {
|
||||||
match = "Host git.agdsn.de User git";
|
match = "Host git.agdsn.de User git";
|
||||||
identityFile = git;
|
identityFile = git;
|
||||||
|
|
Loading…
Reference in a new issue