Attempt at using lix

Without remote builds and with my laptop setup it's not really viable
for now :(
This commit is contained in:
Geoffrey Frogeye 2024-05-06 22:26:36 +02:00
parent e68be9e665
commit c4bb02b16e
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
4 changed files with 127 additions and 5 deletions

View file

@ -12,6 +12,7 @@
./diff
./gaming
./geoffrey.nix
# ./lix
./printing
./remote-builds
./style

16
os/lix/default.nix Normal file
View file

@ -0,0 +1,16 @@
{ 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="
];
};
};
}