hosts/caramel: use nix 2.4

This commit is contained in:
LavaDesu 2022-02-02 16:13:39 +07:00
parent 406df074d5
commit e62c55bb31
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
git
htop
@ -11,4 +11,5 @@
kitty.terminfo
];
environment.variables.EDITOR = "nvim";
nix.package = lib.mkForce pkgs.nix_2_4;
}