diff --git a/flake.lock b/flake.lock index 02aa24c..71ce861 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1701728041, - "narHash": "sha256-x0pyrI1vC8evVDxCxyO6olOyr4wlFg9+VS3C3p4xFYQ=", + "lastModified": 1702203126, + "narHash": "sha256-4BhN2Vji19MzRC7SUfPZGmtZ2WZydQeUk/ogfRBIZMs=", "owner": "nix-community", "repo": "home-manager", - "rev": "ac7216918cd65f3824ba7817dea8f22e61221eaf", + "rev": "defbb9c5857e157703e8fc7cf3c2ceb01cb95883", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixos-hardware": { "locked": { - "lastModified": 1701656485, - "narHash": "sha256-xDFormrGCKKGqngHa2Bz1GTeKlFMMjLnHhTDRdMJ1hs=", + "lastModified": 1702245580, + "narHash": "sha256-tTVRB42Ljo2uWGP7ei5h5/qQjOsdXoz0GHRy9hrVrdw=", "owner": "nixos", "repo": "nixos-hardware", - "rev": "fa194fc484fd7270ab324bb985593f71102e84d1", + "rev": "030edbb68e69f2b97231479f98a9597024650df2", "type": "github" }, "original": { @@ -38,11 +38,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1701718080, - "narHash": "sha256-6ovz0pG76dE0P170pmmZex1wWcQoeiomUZGggfH9XPs=", + "lastModified": 1702151865, + "narHash": "sha256-9VAt19t6yQa7pHZLDbil/QctAgVsA66DLnzdRGqDisg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "2c7f3c0fb7c08a0814627611d9d7d45ab6d75335", + "rev": "666fc80e7b2afb570462423cb0e1cf1a3a34fedd", "type": "github" }, "original": { @@ -54,11 +54,11 @@ }, "nur": { "locked": { - "lastModified": 1702060431, - "narHash": "sha256-8/yGvqBUx/oR2rDhY8+iWZ1nErjpsNCe2O8PvzFaerM=", + "lastModified": 1702323045, + "narHash": "sha256-g1nZYT2+iRwO0NBE6rWWygpIOMT65PGr1JYFPWAFXqM=", "owner": "nix-community", "repo": "nur", - "rev": "d854884a8c7d2014ff44a27cfe9cac8dd78cc7ea", + "rev": "d85e40bfe20c7227f8d639c633c6ef98d17b5fa0", "type": "github" }, "original": { diff --git a/modules/home/default.nix b/modules/home/default.nix index ee63ffb..35b4205 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -4,6 +4,7 @@ ./browser ./chat ./discord + ./direnv ./editor ./email ./games diff --git a/modules/home/direnv/default.nix b/modules/home/direnv/default.nix new file mode 100644 index 0000000..5ad1428 --- /dev/null +++ b/modules/home/direnv/default.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + programs.direnv = { + enable = true; + enableBashIntegration = true; + nix-direnv.enable = true; + }; + + programs.bash.enable = true; +}