From 47540d7cabae144f032c0fc4972e7c9af5ab5e8d Mon Sep 17 00:00:00 2001 From: a-kenji Date: Sun, 10 Jul 2022 15:31:41 +0200 Subject: [PATCH] chore(nix): hide `nix` directory (#1579) --- {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 5f65df9c..82ec8462 100644 --- a/flake.nix +++ b/flake.nix @@ -13,5 +13,5 @@ crate2nix.flake = false; }; - outputs = {...} @ args: import ./nix args; + outputs = {...} @ args: import ./.nix args; }