unify nix options
This commit is contained in:
parent
27e703cf11
commit
240a170c53
6 changed files with 30 additions and 12 deletions
14
flake.nix
14
flake.nix
|
@ -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,12 +70,12 @@
|
|||
};
|
||||
|
||||
"lu@enoko" = lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
modules = [
|
||||
./home/enoko.nix
|
||||
];
|
||||
};
|
||||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
modules = [
|
||||
./home/enoko.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue