Install them this way?
This commit is contained in:
parent
45914cf7ea
commit
66a1fd45d3
|
@ -55,6 +55,31 @@
|
|||
};
|
||||
};
|
||||
|
||||
pkgs = [
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvd";
|
||||
|
||||
runtimeInputs = [echo direnv];
|
||||
|
||||
text = ''
|
||||
echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc
|
||||
direnv allow
|
||||
'';
|
||||
}
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvt";
|
||||
|
||||
runtimeInputs = [direnv nix];
|
||||
|
||||
text = ''
|
||||
nix flake init -t "github:the-nix-way/dev-templates#$1"
|
||||
direnv allow
|
||||
'';
|
||||
}
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# System tools
|
||||
age
|
||||
|
@ -91,28 +116,8 @@
|
|||
# User tools
|
||||
noisetorch
|
||||
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvd";
|
||||
|
||||
runtimeInputs = [echo direnv];
|
||||
|
||||
text = ''
|
||||
echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc
|
||||
direnv allow
|
||||
'';
|
||||
}
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvt";
|
||||
|
||||
runtimeInputs = [direnv nix];
|
||||
|
||||
text = ''
|
||||
nix flake init -t "github:the-nix-way/dev-templates#$1"
|
||||
direnv allow
|
||||
'';
|
||||
}
|
||||
(callPackage ../shared/scripts/dvd.nix {})
|
||||
(callPackage ../shared/scripts/dvt.nix {})
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
|
|
17
nixos/shared/scripts/dvd.nix
Normal file
17
nixos/shared/scripts/dvd.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
direnv,
|
||||
writeShellApplication,
|
||||
}:
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvd";
|
||||
|
||||
runtimeInputs = [echo direnv];
|
||||
|
||||
text = ''
|
||||
echo "use flake \"github:the-nix-way/dev-templates?dir=$1\"" >> .envrc
|
||||
direnv allow
|
||||
'';
|
||||
}
|
17
nixos/shared/scripts/dvt.nix
Normal file
17
nixos/shared/scripts/dvt.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
direnv,
|
||||
writeShellApplication,
|
||||
}:
|
||||
writeShellApplication
|
||||
{
|
||||
name = "dvt";
|
||||
|
||||
runtimeInputs = [direnv nix];
|
||||
|
||||
text = ''
|
||||
nix flake init -t "github:the-nix-way/dev-templates#$1"
|
||||
direnv allow
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue