dotfiles/nixos/helix/default.nix

16 lines
324 B
Nix

{
config,
pkgs,
lib,
...
}: {
nix.settings = {
trusted-substituters = [
"https://helix.cachix.org"
];
trusted-public-keys = [
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
];
};
home-manager.users."${config.local.username}" = {...}: {imports = [./home.nix];};
}