nixos-config/profiles/nix/default.nix

33 lines
1007 B
Nix
Raw Normal View History

2022-01-22 12:46:33 +04:00
{ pkgs, lib, inputs, config, ... }: {
2021-01-21 22:13:53 +04:00
nix = rec {
nixPath = lib.mkForce [ "self=/etc/self/compat" "nixpkgs=/etc/nixpkgs" ];
2021-01-21 22:13:53 +04:00
registry.self.flake = inputs.self;
2021-06-21 22:20:38 +04:00
registry.np.flake = inputs.nixpkgs;
2021-01-21 22:13:53 +04:00
2022-02-03 02:36:37 +04:00
nrBuildUsers = config.nix.settings.max-jobs;
2021-01-21 22:13:53 +04:00
optimise.automatic = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
2022-02-03 02:36:37 +04:00
settings = {
trusted-users = [ "root" "balsoft" "@wheel" ];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"serokell-1:aIojg2Vxgv7MkzPJoftOO/I8HKX622sT+c0fjnZBLj0="
];
substituters = [ "https://cache.nixos.org" ];
trusted-substituters = [
"s3://serokell-private-cache?endpoint=s3.eu-central-1.wasabisys.com&profile=serokell-private-cache-wasabi"
];
};
2021-01-21 22:13:53 +04:00
};
2021-06-08 20:35:21 +04:00
2021-06-13 21:59:08 +04:00
persist.state.directories = [ "/home/balsoft/.local/share/nix" ];
2021-06-08 20:35:21 +04:00
2021-01-21 22:13:53 +04:00
environment.etc.nixpkgs.source = inputs.nixpkgs;
2021-06-03 23:37:14 +04:00
environment.etc.self.source = inputs.self;
2021-01-21 22:13:53 +04:00
}