Compare commits

...

3 commits

Author SHA1 Message Date
kity
2694935f92 forgot importing ssh stuff 2025-04-12 15:50:31 +02:00
kity
2cf5e1f4c9 fix: added missing parameter 2025-04-12 15:39:39 +02:00
kity
f7525cdb63 fix: shoud follow unstable branch 2025-04-12 15:39:18 +02:00
3 changed files with 7 additions and 2 deletions

View file

@ -11,7 +11,7 @@
home-manager.inputs.nixpkgs.follows = "nixpkgsUnstable"; home-manager.inputs.nixpkgs.follows = "nixpkgsUnstable";
alejandra.url = "github:kamadorueda/alejandra/3.0.0"; alejandra.url = "github:kamadorueda/alejandra/3.0.0";
alejandra.inputs.nixpkgs.follows = "nixpkgs"; alejandra.inputs.nixpkgs.follows = "nixpkgsUnstable";
nix-secrets = { nix-secrets = {
url = "git+https://git.hypervirtual.world/harry123/nix-secrets.git"; # replace with your own repo url = "git+https://git.hypervirtual.world/harry123/nix-secrets.git"; # replace with your own repo
@ -31,7 +31,7 @@
nixos-generators = { nixos-generators = {
url = "github:nix-community/nixos-generators"; url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgsUnstable";
}; };
nix-darwin.url = "github:LnL7/nix-darwin"; nix-darwin.url = "github:LnL7/nix-darwin";

View file

@ -22,6 +22,7 @@
servers = [ servers = [
{ {
"sisyphe" = { "sisyphe" = {
baseUrl = "http://nzb.sisyphe.normandy.hypervirtual.world";
apiKeyFile = "/run/secrets/sabnbzd_apikey"; apiKeyFile = "/run/secrets/sabnbzd_apikey";
}; };
} }

View file

@ -6,6 +6,10 @@
... ...
}: }:
{ {
imports = [
./ssh.nix
];
environment.systemPackages = [ environment.systemPackages = [
pkgs.curl pkgs.curl
pkgs.unzip pkgs.unzip