added direnv
This commit is contained in:
parent
a85b35995e
commit
da8615ffad
20 changed files with 1622 additions and 3 deletions
6
modules/cli/adb.nix
Normal file
6
modules/cli/adb.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.adb.enable = true;
|
||||
users.users.moritz.extraGroups = [ "adbusers" ];
|
||||
}
|
||||
|
|
@ -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
12
modules/cli/direnv.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.moritz.programs.direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv = {
|
||||
enable = true;
|
||||
enableFlakes = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue