aboutsummaryrefslogtreecommitdiff
path: root/flake/devshells.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-21 13:00:38 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-21 13:00:38 -0700
commit40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd (patch)
tree45a0902743971b1789b1f5d03efde7390cc0e95e /flake/devshells.nix
parentmove user configurations to top-level (diff)
downloadinfra-40d6a40b1de18f28003c4aa5f36d9b4b0ef4afdd.tar.gz
move all profiles, modules, and flakes to top-level
Diffstat (limited to '')
-rw-r--r--flake/devshells.nix (renamed from nix/flake/devshells.nix)11
1 files changed, 8 insertions, 3 deletions
diff --git a/nix/flake/devshells.nix b/flake/devshells.nix
index 339a8f4..d28c4b3 100644
--- a/nix/flake/devshells.nix
+++ b/flake/devshells.nix
@@ -1,4 +1,4 @@
-{ inputs, ... }:
+{ self, inputs, ... }:
{
perSystem =
{ system, pkgs, ... }:
@@ -35,8 +35,13 @@
};
pre-commit-check = mkPreCommitHooks ./.;
- scripts = import ../../nix/scripts {
- inherit pkgs system inputs;
+ scripts = import "${self}/scripts" {
+ inherit
+ pkgs
+ self
+ system
+ inputs
+ ;
};
in
{