dotfiles/nixos/helix/default.nix
Cyryl Płotnicki 3ead6500a8
Some checks failed
use nix / build (push) Failing after 6m0s
migrate to using module options for the username
2024-10-02 21:35:56 +01:00

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];};
}