treewide: config/nixos/nix -> modules/nix/core/nix.nix
This commit is contained in:
parent
a734372732
commit
c37f00205b
6 changed files with 36 additions and 40 deletions
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./nix
|
||||
./programs
|
||||
./services
|
||||
];
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [./nixpkgs.nix ./nh.nix];
|
||||
environment.systemPackages = [pkgs.git];
|
||||
nix = {
|
||||
package = pkgs.lix;
|
||||
settings = {
|
||||
accept-flake-config = true;
|
||||
warn-dirty = false;
|
||||
auto-optimise-store = true;
|
||||
trusted-users = ["root" "@wheel"];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
clean = {
|
||||
enable = true;
|
||||
extraArgs = "--keep-since 30d --keep 3";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [
|
||||
"cinny-4.2.3"
|
||||
"cinny-unwrapped-4.2.3"
|
||||
"segger-jlink-qt4-810"
|
||||
];
|
||||
segger-jlink.acceptLicense = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
./home-manager.nix
|
||||
./locales.nix
|
||||
./networking.nix
|
||||
./nix.nix
|
||||
./users.nix
|
||||
./security.nix
|
||||
];
|
||||
|
|
35
modules/nix/core/nix.nix
Normal file
35
modules/nix/core/nix.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{pkgs, ...}: {
|
||||
nix = {
|
||||
package = pkgs.lix;
|
||||
settings = {
|
||||
accept-flake-config = true;
|
||||
warn-dirty = false;
|
||||
auto-optimise-store = true;
|
||||
trusted-users = ["root" "@wheel"];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
clean = {
|
||||
enable = true;
|
||||
extraArgs = "--keep-since 30d --keep 3";
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [
|
||||
"cinny-4.2.3"
|
||||
"cinny-unwrapped-4.2.3"
|
||||
"segger-jlink-qt4-810"
|
||||
];
|
||||
segger-jlink.acceptLicense = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue