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

30 lines
476 B
Nix
Raw Normal View History

2024-04-22 23:49:41 -05:00
{
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
];
};
};