about summary refs log tree commit diff
path: root/home/default.nix
blob: d4f112b9b1d13224bcb0a5d721e5ce94280e495c (plain)
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
30
31
32
33
34
35
36
37
38
39
40
{ self, unstable, ... } @ inputs:

{
  # TODO See: https://github.com/neovim/neovim/pull/21711
  # TODO See: https://github.com/NixOS/nixpkgs/pull/214231
  "zach@alpha" = self.lib.mkHome {
    username = "zach";
    hostname = "alpha";
    pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay rust.overlays.default /*neovim.overlay*/ ]; };

    extraModules = [
      ./profiles/populate.nix
      ./profiles/base
      ./profiles/browsing
      ./profiles/development
      ./profiles/messaging
      ./profiles/multimedia
      ./profiles/research
    ];

    version = "22.05";
  };

  "o32@kompakt" = self.lib.mkHome {
    username = "o32";
    hostname = "kompakt";
    pkgs = import unstable { system = "aarch64-darwin"; overlays = with inputs; [ rust.overlays.default /*neovim.overlay*/ ]; };

    extraModules = [
      ./profiles/populate.nix
      ./profiles/base-darwin
      ./profiles/development
      ./profiles/messaging
      ./profiles/research
      ./profiles/fonts
    ];

    version = "22.05";
  };
}