snix/users/glittershark/system/system/default.nix
Luke Granger-Brown b71362f198 refactor(users/glittershark/system): switch to ops.nixos.nixosFor
ops.nixos.nixosFor is intended to provide the "basic" readTree-like
system arguments to NixOS systems; in particular, it provides "depot" as
a module argument, as well as, for the moment, config.depot.

Change-Id: I442c7d79ac0eb2ff8e1bf606f4e083e15eb0a8f4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2761
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
2021-04-02 18:00:14 +00:00

81 lines
1.8 KiB
Nix

args @ { depot, pkgs, ... }:
let
nixpkgs = import pkgs.nixpkgsSrc {};
in
rec {
chupacabra = import ./machines/chupacabra.nix;
chupacabraSystem = (pkgs.nixos {
configuration = chupacabra;
}).system;
mugwump = import ./machines/mugwump.nix;
mugwumpSystem = (pkgs.nixos {
configuration = mugwump;
}).system;
roswell = import ./machines/roswell.nix;
roswellSystem = (depot.ops.nixos.nixosFor ({ ... }: {
imports = [
./machines/roswell.nix
"${nixpkgs.home-manager.src}/nixos"
];
home-manager.users.grfn = { config, lib, ... }: {
imports = [ ../home/machines/roswell.nix ];
lib.depot = depot;
_module.args.pkgs = lib.mkForce
(import pkgs.nixpkgsSrc
(lib.filterAttrs (n: v: v != null) config.nixpkgs));
};
})).system;
yeren = import ./machines/yeren.nix;
yerenSystem = depot.ops.nixos.nixosFor yeren;
iso = import ./iso.nix args;
# Build chupacabra in CI
meta.targets = [
"chupacabraSystem"
"mugwumpSystem"
"roswellSystem"
"yerenSystem"
"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
'';
}