Files
nixos-config/flake.nix
T
thomas 1d1afe1a43
helium update / update-helium (push) Successful in 10s
zen browser update / update-zen-browser (push) Successful in 5s
handy update / update-handy (push) Successful in 5s
move smb automount secrets to agenix
2026-03-13 19:07:13 +00:00

21 lines
494 B
Nix

{
inputs = {
# Essential
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
import-tree.url = "github:vic/import-tree";
agenix.url = "github:ryantm/agenix";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; }
# Imports all of the top-level modules (the files under `./modules`)
(inputs.import-tree ./modules);
}