updates and misc fixes

This commit is contained in:
Rouven Seifert 2025-05-13 11:36:34 +02:00
parent 0cf89b0ae4
commit 8e46bfc662
4 changed files with 22 additions and 9 deletions

18
flake.lock generated
View file

@ -299,11 +299,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1746892839, "lastModified": 1747021744,
"narHash": "sha256-0b9us0bIOgA1j/s/6zlxVyP3m97yAh0U+YwKayJ6mmU=", "narHash": "sha256-IDsM/9/tHQBlhG3tXI2fTM84AUN1uRa7JDPT1LMlGes=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "12e67385964d9c9304daa81d0ad5ba3b01fdd35e", "rev": "fb061f555f821fe4fb49f8f6f2a0cc3d5728bd52",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -425,11 +425,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1746330942, "lastModified": 1746934494,
"narHash": "sha256-ShizFaJCAST23tSrHHtFFGF0fwd72AG+KhPZFFQX/0o=", "narHash": "sha256-3n6i+F0sDASjkhbvgFDpPDZGp7z19IrRtjfF9TwJpCA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "137fd2bd726fff343874f85601b51769b48685cc", "rev": "e9b21b01e4307176b9718a29ac514838e7f6f4ff",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -502,11 +502,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1746663147, "lastModified": 1746904237,
"narHash": "sha256-Ua0drDHawlzNqJnclTJGf87dBmaO/tn7iZ+TCkTRpRc=", "narHash": "sha256-3e+AVBczosP5dCLQmMoMEogM57gmZ2qrVSrmq9aResQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "dda3dcd3fe03e991015e9a74b22d35950f264a54", "rev": "d89fc19e405cb2d55ce7cc114356846a0ee5e956",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -10,6 +10,7 @@
./mpv ./mpv
./ssh ./ssh
./theme ./theme
./zellij
# ./tex # ./tex
./packages.nix ./packages.nix
]; ];

View file

@ -46,6 +46,9 @@ in
match = "Host gitlab.hrz.tu-chemnitz.de User git"; match = "Host gitlab.hrz.tu-chemnitz.de User git";
identityFile = git; identityFile = git;
}; };
"pentestlab-login.inf.tu-dresden.de" = {
port = 2273;
};
# iFSR # iFSR
"quitte" = { "quitte" = {

View file

@ -0,0 +1,9 @@
{ ... }:
{
programs.zellij = {
enable = true;
settings = {
theme = "dracula";
};
};
}