rm; superceded by the home-manager config

This commit is contained in:
Sridhar Ratnakumar 2022-04-15 22:41:18 -04:00
parent 67f500a6ba
commit 8e7cca55da

View file

@ -1,18 +0,0 @@
{ config, pkgs, rosettaPkgs, ... }:
{
# https://github.com/nix-community/nix-direnv
environment.systemPackages = with pkgs; [ direnv nix-direnv ];
# nix options for derivations to persist garbage collection
nix.extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
environment.pathsToLink = [
"/share/nix-direnv"
];
nixpkgs.overlays = [
(self: super: { nix-direnv = super.nix-direnv.override { enableFlakes = true; }; })
];
}