Init the config for mugwump, a NUC that I bought from ncl and which I'm going to use as a simple home server and ssh bastion box. Since this is the first time I've set up a server using my nixos config, this also moves a bunch of desktop (xserver, audio, etc.) related config out of modules/common.nix and into a new modules/desktop.nix. Coming soon: nixos-rebuild switch --target, but in the depot! Change-Id: I67bd5ba6e3c26f80f77058af186fd41cc245d5d2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2016 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
args @ { depot, pkgs, ... }:
|
|
|
|
rec {
|
|
chupacabra = import ./machines/chupacabra.nix;
|
|
|
|
chupacabraSystem = (pkgs.nixos {
|
|
configuration = chupacabra;
|
|
}).system;
|
|
|
|
mugwump = import ./machines/mugwump.nix;
|
|
|
|
mugwumpSystem = (pkgs.nixos {
|
|
configuration = mugwump;
|
|
}).system;
|
|
|
|
iso = import ./iso.nix args;
|
|
|
|
# Build chupacabra in CI
|
|
meta.targets = [
|
|
"chupacabraSystem"
|
|
"mugwumpSystem"
|
|
|
|
"iso"
|
|
];
|
|
|
|
rebuilder =
|
|
let
|
|
depotPath = "/home/grfn/code/depot";
|
|
|
|
caseFor = hostname: ''
|
|
${hostname})
|
|
echo "Rebuilding NixOS for //users/glittershark/nixos/${hostname}"
|
|
system=$(nix-build -E '(import ${depotPath} {}).users.glittershark.system.system.${hostname}' --no-out-link)
|
|
;;
|
|
'';
|
|
in depot.third_party.writeShellScriptBin "rebuilder" ''
|
|
set -ue
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "Oh no! Only root is allowed to rebuild the system!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
case $HOSTNAME in
|
|
${caseFor "chupacabra"}
|
|
*)
|
|
echo "$HOSTNAME is not a known NixOS host!" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
nix-env -p /nix/var/nix/profiles/system --set $system
|
|
$system/bin/switch-to-configuration switch
|
|
'';
|
|
}
|