dotfiles/os/lix/default.nix
Geoffrey Frogeye c4bb02b16e
Attempt at using lix
Without remote builds and with my laptop setup it's not really viable
for now :(
2024-05-06 22:26:36 +02:00

17 lines
325 B
Nix

{ 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="
];
};
};
}