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 = { homeConfigurations = {
"lu@yukari" = lib.homeManagerConfiguration { "lu@yukari" = lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; }; extraSpecialArgs = { inherit inputs outputs; };
modules = [ modules = [
./home/yukari.nix ./home/yukari.nix
@ -70,12 +70,12 @@
}; };
"lu@enoko" = lib.homeManagerConfiguration { "lu@enoko" = lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; }; extraSpecialArgs = { inherit inputs outputs; };
modules = [ modules = [
./home/enoko.nix ./home/enoko.nix
]; ];
}; };
}; };
}; };
} }

View file

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

View file

@ -1,8 +1,28 @@
{ ... }: { { lib, pkgs, ... }: {
imports = [ imports = [
./audio.nix ./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 # auto mount external drives
services.devmon.enable = true; services.devmon.enable = true;
services.gvfs.enable = true; services.gvfs.enable = true;

View file

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

View file

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

View file

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