nixos-config/modules/system/settings/nix/default.nix

18 lines
326 B
Nix
Raw Normal View History

2025-02-25 02:14:16 -05:00
{ config, pkgs, unstable, ... }:
{
imports = [ ./gc ];
2024-12-01 20:10:31 -05:00
nix.settings = {
2025-02-09 00:28:20 -05:00
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
2025-02-25 02:14:16 -05:00
_module.args.pkgsUnstable = import unstable {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
}