dragnpkgs/module.nix

19 lines
527 B
Nix
Raw Normal View History

{ ... }: {
imports = [
./modules/ghidra-server
2024-12-02 04:17:48 +00:00
./modules/regdom
./modules/machine-info
];
2024-12-02 04:17:48 +00:00
# set some nix settings defaults
config.nix.settings = {
repl-overlays = [ ./repl-overlay.nix ];
experimental-features = "nix-command flakes repl-flake";
substituters = [ "https://cache.lix.systems" ];
trusted-public-keys = [ "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" ];
# we're disabling the default flake registry because i don't like it
flake-registry = "";
};
}