Lix: Remove substituters

Those are mostly misses, even for Lix.
This commit is contained in:
Geoffrey Frogeye 2024-05-10 01:51:23 +02:00
parent 552e1c1cf2
commit 7c74c5e1d9
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 2 additions and 18 deletions

View file

@ -1,4 +1,4 @@
{ disko, ... }:
{ disko, lix-module, ... }:
{
imports = [
../options.nix
@ -13,7 +13,7 @@
disko.nixosModules.disko
./gaming
./geoffrey.nix
./lix
lix-module.nixosModules.default
./printing
./remote-builds
./style

View file

@ -1,16 +0,0 @@
{ pkgs, lib, config, lix-module, ... }:
{
imports = [
lix-module.nixosModules.default
];
config = {
nix.settings = {
substituters = [
"https://cache.lix.systems"
];
trusted-public-keys = [
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
];
};
};
}