chore(ops/nixos): Move NixOS configuration one level up

This commit is contained in:
Vincent Ambo 2020-01-04 15:08:49 +00:00 committed by Vincent Ambo
parent 3638048c9b
commit 1d687c5303
19 changed files with 51 additions and 14 deletions

27
ops/nixos/dotfiles.nix Normal file
View file

@ -0,0 +1,27 @@
# Bundle configuration files into a derivation.
# I call this derivation dotfiles despite that not technically being true
# anymore ...
{ config, pkgs, ...}:
let dotfiles = pkgs.stdenv.mkDerivation {
name = "tazjins-dotfiles";
srcs = [
./dotfiles
];
installPhase = ''
mkdir -p $out
cp ./* $out/
'';
};
in {
# /etc/ is a special place in NixOS!
# Symlinks that need to be created there must be specified explicitly.
environment.etc = {
"alacritty.yml".source = "${dotfiles}/alacritty.yml";
"fish/config.fish".source = "${dotfiles}/config.fish";
"tmux.conf".source = "${dotfiles}/tmux.conf";
};
}