Compare commits

..

No commits in common. "1b517816dfaf7b89687f643af0066c9091220d91" and "2a1f31dbad7ad95f7792a8a7909f795dddf0a908" have entirely different histories.

3 changed files with 2 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# Work profile overlay
_Inspired by the post [Published my Nix Dotfiles](https://www.chrisportela.com/posts/published-nix-dotfiles/) by [@chrisportela](https://github.com/chrisportela)._
_Inspired by [Published my Nix Dotfiles](https://www.chrisportela.com/posts/published-nix-dotfiles/)._
This repo demonstrates how I use a private repo to overlay my work-specific configurations on top of my personal ones. To use it, I just:
1. Clone the private repo to my machine.

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: {
{ pkgs, ... }: {
imports = [
./fish.nix
];

View file

@ -9,9 +9,5 @@
sshroot = "ssh -i ~/.ssh/id_ed25519-root -l root";
vpnkit = "wsl.exe -d wsl-vpnkit --cd /app service wsl-vpnkit";
};
functions = {
update-dotfiles = "nix flake lock --update-input dotfiles ${config.home.homeDirectory}/.dotfiles/ && switch-home";
};
};
}