nixos/common/base.nix

43 lines
799 B
Nix
Raw Normal View History

{ config, pkgs, lib, nur, ... }:
2023-07-16 16:43:13 +03:00
let
my = import ../.;
secrets = my.secrets { inherit config; };
in {
2023-07-16 16:43:13 +03:00
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
2023-07-16 19:02:49 +03:00
settings = {
sandbox = true;
trusted-users = [ "root" "ivabus" ];
allowed-users = [ "root" "ivabus" ];
2023-07-16 19:02:49 +03:00
};
2023-07-16 16:43:13 +03:00
};
2023-07-16 19:00:44 +03:00
nixpkgs.overlays = [ nur.overlay ];
documentation = {
doc.enable = false;
info.enable = false;
man.enable = true;
nixos.enable = false;
};
environment.systemPackages = with pkgs; [
wget
curl
git
git-crypt
neovim
python3
usbutils
pciutils
coreutils
killall
];
# Inject secrets through module arguments while evaluating configs.
_module.args.secrets = secrets;
}