16 lines
303 B
Nix
16 lines
303 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
nix.settings = {
|
|
trusted-substituters = [
|
|
"https://helix.cachix.org"
|
|
];
|
|
trusted-public-keys = [
|
|
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
|
|
];
|
|
};
|
|
home-manager.users.cyryl = {...}: {imports = [./home.nix];};
|
|
}
|