Replace lorri with nix-direnv
This commit is contained in:
parent
8e44e20e4c
commit
55b4aba216
|
@ -112,6 +112,7 @@
|
||||||
./modules/power.nix
|
./modules/power.nix
|
||||||
./modules/cachix.nix
|
./modules/cachix.nix
|
||||||
./overlays/emacs.nix
|
./overlays/emacs.nix
|
||||||
|
./overlays/nix-direnv.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
# Improve nix-shell and direnv integration
|
# Improve nix-shell and direnv integration
|
||||||
services.lorri.enable = true;
|
environment.pathsToLink = [ "/share/nix-direnv" ];
|
||||||
|
|
||||||
# Enable virtualisation
|
# Enable virtualisation
|
||||||
virtualisation.libvirtd = {
|
virtualisation.libvirtd = {
|
||||||
|
|
|
@ -3,13 +3,10 @@
|
||||||
with pkgs;
|
with pkgs;
|
||||||
|
|
||||||
let
|
let
|
||||||
emacs-vterm = (
|
emacs-vterm = ((emacsPackagesNgGen emacsPgtkGcc).emacsWithPackages
|
||||||
(emacsPackagesNgGen emacsPgtkGcc).emacsWithPackages
|
(epkgs: [ epkgs.vterm ]));
|
||||||
(epkgs: [ epkgs.vterm ])
|
|
||||||
);
|
|
||||||
|
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
# Monitoring
|
# Monitoring
|
||||||
htop
|
htop
|
||||||
|
@ -42,7 +39,7 @@ in
|
||||||
# Development
|
# Development
|
||||||
git
|
git
|
||||||
direnv
|
direnv
|
||||||
lorri
|
nix-direnv
|
||||||
podman-compose
|
podman-compose
|
||||||
gnumake
|
gnumake
|
||||||
gitAndTools.pre-commit
|
gitAndTools.pre-commit
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
|
||||||
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
nix-direnv = super.nix-direnv.override { enableFlakes = true; };
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue