This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/flyio/vaultwarden/flake.nix
2024-04-23 14:49:41 +10:00

30 lines
No EOL
476 B
Nix

{
description = "My nixos homelab";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
};
outputs ={
self
, nixpkgs
, sops-nix
, home-manager
, nix-vscode-extensions
, ...
} @ inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
"aarch64-linux"
"x86_64-linux"
];
in
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.flyctl
];
};
};