nixos-config/modules/home/settings/nix/default.nix
2025-03-29 03:49:42 -04:00

15 lines
212 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./channels
./unfree
];
nix = {
package = lib.mkForce pkgs.lix;
settings.experimental-features = [
"flakes"
"nix-command"
];
};
}