mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
Disable nix channels
This commit is contained in:
parent
a2e357f853
commit
b2351be830
1 changed files with 16 additions and 11 deletions
|
|
@ -5,17 +5,22 @@
|
||||||
self.wrappers.default
|
self.wrappers.default
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.settings = {
|
nix = {
|
||||||
experimental-features = [
|
channel.enable = false;
|
||||||
"nix-command"
|
registry.nixpkgs.flake = self.inputs.nixpkgs;
|
||||||
"flakes"
|
settings = {
|
||||||
];
|
flake-registry = "";
|
||||||
auto-optimise-store = true;
|
experimental-features = [
|
||||||
warn-dirty = false;
|
"nix-command"
|
||||||
trusted-users = [
|
"flakes"
|
||||||
"root"
|
];
|
||||||
"@wheel"
|
auto-optimise-store = true;
|
||||||
];
|
warn-dirty = false;
|
||||||
|
trusted-users = [
|
||||||
|
"root"
|
||||||
|
"@wheel"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue