Added dependency on nixos-secrets

This commit is contained in:
Jan-Bulthuis 2025-05-30 12:06:21 +02:00
parent 844118055c
commit 0efee5bceb
2 changed files with 24 additions and 1 deletions

18
flake.lock generated
View File

@ -154,7 +154,23 @@
"impermanence": "impermanence",
"nix-minecraft": "nix-minecraft",
"nix-modpack": "nix-modpack",
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"secrets": "secrets"
}
},
"secrets": {
"locked": {
"lastModified": 1748558035,
"narHash": "sha256-2rcRntqj4l2TGvJfxcUqWk0fUQ/R2TXlzXsUUfAIhhE=",
"ref": "refs/heads/main",
"rev": "b79d30edaa496f13c2549507d54bbf6ec574e6c2",
"revCount": 2,
"type": "git",
"url": "ssh://gitea@git.bulthuis.dev/Jan/nixos-secrets"
},
"original": {
"type": "git",
"url": "ssh://gitea@git.bulthuis.dev/Jan/nixos-secrets"
}
},
"systems": {

View File

@ -6,6 +6,13 @@
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# Secrets
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
secrets.url = "git+ssh://gitea@git.bulthuis.dev/Jan/nixos-secrets";
# Disk setup
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
impermanence.url = "github:nix-community/impermanence";