diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-21 13:00:38 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-21 13:00:38 -0700 |
| commit | 40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd (patch) | |
| tree | 45a0902743971b1789b1f5d03efde7390cc0e95e /flake/packages.nix | |
| parent | move user configurations to top-level (diff) | |
| download | infra-40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd.tar.gz | |
move all profiles, modules, and flakes to top-level
Diffstat (limited to '')
| -rw-r--r-- | flake/packages.nix (renamed from nix/flake/packages.nix) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/flake/packages.nix b/flake/packages.nix index a166803..68f43c0 100644 --- a/nix/flake/packages.nix +++ b/flake/packages.nix @@ -1,9 +1,9 @@ -{ ... }: +{ self, ... }: { perSystem = { pkgs, ... }: let - mkFcunyNet = import ../../src/fcuny.net { inherit pkgs; }; + mkFcunyNet = import "${self}/src/fcuny.net" { inherit pkgs; }; in { packages = { |
