39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [ ./common-config.nix ];
|
|
environment.packages = config.vacu.packageList;
|
|
|
|
environment.etc."resolv.conf".text = lib.mkForce ''
|
|
nameserver 10.78.79.1
|
|
nameserver 9.9.9.10
|
|
nameserver 149.112.112.10
|
|
|
|
options timeout:1 attempts:5
|
|
'';
|
|
|
|
environment.etc."ssh/ssh_config".text = config.vacu.ssh.config;
|
|
|
|
# Backup etc files instead of failing to activate generation if a file already exists in /etc
|
|
environment.etcBackupExtension = ".bak";
|
|
|
|
# Read the changelog before changing this value
|
|
system.stateVersion = "23.05";
|
|
|
|
# Set up nix for flakes
|
|
nix.extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
nix.substituters = config.vacu.nix.extraSubstituters;
|
|
nix.trustedPublicKeys = config.vacu.nix.extraTrustedKeys;
|
|
|
|
environment.sessionVariables."PS1" = "\\w $ ";
|
|
|
|
# Set your time zone
|
|
time.timeZone = "America/Los_Angeles";
|
|
|
|
#specific to the particular install; avoids impurity
|
|
#user.gid = 10287;
|
|
#user.uid = 10287;
|
|
}
|