nixos-config/modules/system/settings/nix/default.nix
2025-02-25 02:14:16 -05:00

17 lines
326 B
Nix

{ config, pkgs, unstable, ... }:
{
imports = [ ./gc ];
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
_module.args.pkgsUnstable = import unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
}