forked from auxolotl/templates
Merge pull request #11 from aemogie/feat/direnv-init
This commit is contained in:
commit
9166d28895
3
direnv/.envrc
Normal file
3
direnv/.envrc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
if has nix_direnv_version; then
|
||||||
|
use flake
|
||||||
|
fi
|
29
direnv/flake.nix
Normal file
29
direnv/flake.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
description = "An empty devshell with direnv support";
|
||||||
|
|
||||||
|
inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixpkgs-unstable";
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
{ nixpkgs, ... }:
|
||||||
|
let
|
||||||
|
forAllSystems =
|
||||||
|
function:
|
||||||
|
nixpkgs.lib.genAttrs [
|
||||||
|
"x86_64-linux"
|
||||||
|
"aarch64-linux"
|
||||||
|
"x86_64-darwin"
|
||||||
|
"aarch64-darwin"
|
||||||
|
] (system: function nixpkgs.legacyPackages.${system});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
devShells = forAllSystems (pkgs: {
|
||||||
|
default = pkgs.mkShellNoCC {
|
||||||
|
packages = [ pkgs.hello ];
|
||||||
|
EXAMPLE_VAR = "inside the direnv template";
|
||||||
|
shellHook = ''
|
||||||
|
echo "Hello from $EXAMPLE_VAR, $(whoami)!"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
|
@ -17,7 +17,7 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
templates = {
|
templates = {
|
||||||
default = self.templates.direnv;
|
default = self.templates.system;
|
||||||
system = {
|
system = {
|
||||||
path = ./system;
|
path = ./system;
|
||||||
description = "";
|
description = "";
|
||||||
|
@ -30,6 +30,10 @@
|
||||||
path = ./darwin;
|
path = ./darwin;
|
||||||
description = "";
|
description = "";
|
||||||
};
|
};
|
||||||
|
direnv = {
|
||||||
|
path = ./direnv;
|
||||||
|
description = "An empty devshell with direnv support";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
|
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue