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

View file

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

View file

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

View file

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