This commit is contained in:
Gregory Burd 2023-09-25 16:10:03 -04:00
parent 917c298e5c
commit f1f46c9865
Signed by: greg
GPG key ID: AEFACC3FC495AF89
3 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{ config, pkgs, username, ... }:
{ config, pkgs, username, desktop, ... }:
{
imports = [
../services/keybase.nix
../_mixins/services/keybase.nix
# TODO remove/migrate away from user mixins
./_mixins

View file

@ -1,4 +1,4 @@
{ config, desktop, hostname, lib, pkgs, ... }:
{ config, desktop, hostname, inputs, lib, pkgs, ... }:
let
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
in

View file

@ -64,8 +64,8 @@ let
sudo nixos-install --no-root-password --flake ".#$TARGET_HOST"
# Rsync nix-config to the target install and set the remote origin to SSH.
rsync -a --delete "$HOME/ws/" "/mnt/home/$TARGET_USER/Zero/"
pushd "/mnt/home/$TARGET_USER/Zero/nix-config"
rsync -a --delete "$HOME/ws/" "/mnt/home/$TARGET_USER/gburd/"
pushd "/mnt/home/$TARGET_USER/gburd/nix-config"
git remote set-url origin git@github.com:gburd/nix-config.git
popd