about summary refs log tree commit diff
path: root/dotfiles.nix
blob: 4032c873a3b74c18df8de6f9498042313bdd4eee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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";
    "i3/config".source        = "${dotfiles}/i3.conf";
    "rofi.conf".source        = "${dotfiles}/rofi.conf";
    "tmux.conf".source        = "${dotfiles}/tmux.conf";
  };
}