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

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

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

    version = "22.05";
  };
}