added direnv

dev-docs
Moritz Böhme 2021-10-06 15:32:31 +02:00
parent a85b35995e
commit da8615ffad
20 changed files with 1622 additions and 3 deletions

View File

View File

@ -0,0 +1 @@
/nix/store/3qxikgxyrbzy92jz35x6vqxn4jcfhn0r-source

View File

@ -0,0 +1 @@
/nix/store/5a10a20xfcd3v5ljmzxqmcs1rp01kp7y-source

View File

@ -0,0 +1 @@
/nix/store/7jc0a6qq2w4xjj4p61mspp4s54yniz6m-source

View File

@ -0,0 +1 @@
/nix/store/9nir182gbv6l0g6mr8r3k93gpa4kp633-source

View File

@ -0,0 +1 @@
/nix/store/9zm9pc5n8ps95sjdgflfgyb2jfm5jqbm-source

View File

@ -0,0 +1 @@
/nix/store/favjxr4vkqbxzjpxnfq6l0mm7r1yp425-source

View File

@ -0,0 +1 @@
/nix/store/grnm9g6ys558k2g0f4p75alnbdxg952h-source

View File

@ -0,0 +1 @@
/nix/store/is8lshj745h421kmvk893vj5idrhc678-source

View File

@ -0,0 +1 @@
/nix/store/jbnfxiy2xv7sbpmfggvl9zn0f4w7c2qr-source

View File

@ -0,0 +1 @@
/nix/store/kdbvw9l41mkivgd0gxmvmciqig2996zm-source

View File

@ -0,0 +1 @@
/nix/store/kjigaggz79sx4jyhfpg1rfbjaszz908c-source

View File

@ -0,0 +1 @@
/nix/store/kl9ipbqgrvh5vlp52qkfsb3a39b0r5mw-source

View File

@ -0,0 +1 @@
/nix/store/z1rf17q0fxj935cmplzys4gg6nxj1as0-source

1
.direnv/flake-profile Symbolic link
View File

@ -0,0 +1 @@
/nix/store/93j1l9bvsmp5f5w4dhhv6acfl3vdyd89-dotfiles-env

1588
.direnv/flake-profile.rc Normal file

File diff suppressed because it is too large Load Diff

1
.envrc Normal file
View File

@ -0,0 +1 @@
use flake

6
modules/cli/adb.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
programs.adb.enable = true;
users.users.moritz.extraGroups = [ "adbusers" ];
}

View File

@ -1,7 +1,5 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./git.nix ./nix.nix ./zsh.nix ];
programs.adb.enable = true;
users.users.moritz.extraGroups = [ "adbusers" ];
imports = [ ./git.nix ./nix.nix ./zsh.nix ./direnv.nix ./adb.nix ];
}

12
modules/cli/direnv.nix Normal file
View File

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz.programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv = {
enable = true;
enableFlakes = true;
};
};
}