home: add direnv
This commit is contained in:
parent
def36f2ab3
commit
749d45df3c
5 changed files with 10 additions and 2 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use flake
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@ result
|
||||||
result-*
|
result-*
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
/.direnv
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
legacyPackages = import ./pkgs pkgs;
|
legacyPackages = import ./pkgs pkgs;
|
||||||
|
|
||||||
### nix develop
|
### nix develop
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShellNoCC {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
colmena
|
colmena
|
||||||
sops
|
sops
|
||||||
|
|
6
home/applications/direnv/default.nix
Normal file
6
home/applications/direnv/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.direnv = {
|
||||||
|
enable = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
colmena
|
|
||||||
deadnix
|
deadnix
|
||||||
nh
|
nh
|
||||||
nil
|
nil
|
||||||
|
|
Loading…
Reference in a new issue