unify nix options

This commit is contained in:
insects 2024-08-10 21:05:54 +02:00
parent 27e703cf11
commit 240a170c53
6 changed files with 30 additions and 12 deletions

View file

@ -62,7 +62,7 @@
homeConfigurations = {
"lu@yukari" = lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
modules = [
./home/yukari.nix
@ -70,7 +70,7 @@
};
"lu@enoko" = lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
modules = [
./home/enoko.nix

View file

@ -16,7 +16,7 @@
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
experimental-features = ["nix-command" "flakes" "repl-flake"];
experimental-features = ["nix-command" "flakes"];
warn-dirty = false;
};
};

View file

@ -1,8 +1,28 @@
{ ... }: {
{ lib, pkgs, ... }: {
imports = [
./audio.nix
];
# use nix version 2.22
nix = {
package = pkgs.nixVersions.nix_2_22;
settings = {
auto-optimise-store = lib.mkDefault true;
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than +3";
};
};
# auto mount external drives
services.devmon.enable = true;
services.gvfs.enable = true;

View file

@ -21,7 +21,6 @@
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in {
settings = {
experimental-features = "nix-command flakes";
flake-registry = "";
nix-path = config.nix.nixPath;
};

View file

@ -21,7 +21,6 @@
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
in {
settings = {
experimental-features = "nix-command flakes";
flake-registry = "";
nix-path = config.nix.nixPath;
};

View file

@ -10,7 +10,7 @@
, ...
}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes repl-flake";
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [
home-manager
git