about summary refs log tree commit diff
path: root/home/default.nix
blob: 32627e0f1cffdfab9752d14db1847549c7505cf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ self, unstable, ... } @ inputs:

{
  "zach@alpha" = self.lib.mkHome {
    username = "zach";
    hostname = "alpha";
    system = "x86_64-linux";
    pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ chaotic-nixpkgs.overlay ]; };

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

    version = "22.05";
  };
}