From 646db45eb3a0ec1750ec5f0c03fb25693719cbf4 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Sun, 10 Jul 2022 15:14:24 +0200 Subject: [PATCH] chore(nix): hide `nix` directory Move `nix` directory to `.nix`, because this doesn't necessarily need to be as user facing, as it is currently. --- {nix => .nix}/crate2nix.nix | 0 {nix => .nix}/default.nix | 0 {nix => .nix}/devShell.nix | 0 {nix => .nix}/plugins.nix | 0 flake.nix | 2 +- 5 files changed, 1 insertion(+), 1 deletion(-) rename {nix => .nix}/crate2nix.nix (100%) rename {nix => .nix}/default.nix (100%) rename {nix => .nix}/devShell.nix (100%) rename {nix => .nix}/plugins.nix (100%) diff --git a/nix/crate2nix.nix b/.nix/crate2nix.nix similarity index 100% rename from nix/crate2nix.nix rename to .nix/crate2nix.nix diff --git a/nix/default.nix b/.nix/default.nix similarity index 100% rename from nix/default.nix rename to .nix/default.nix diff --git a/nix/devShell.nix b/.nix/devShell.nix similarity index 100% rename from nix/devShell.nix rename to .nix/devShell.nix diff --git a/nix/plugins.nix b/.nix/plugins.nix similarity index 100% rename from nix/plugins.nix rename to .nix/plugins.nix diff --git a/flake.nix b/flake.nix index 5f65df9cea..82ec846276 100644 --- a/flake.nix +++ b/flake.nix @@ -13,5 +13,5 @@ crate2nix.flake = false; }; - outputs = {...} @ args: import ./nix args; + outputs = {...} @ args: import ./.nix args; }