summaryrefslogtreecommitdiff
path: root/users/default.nix
blob: 65bcb84c3aa9373b5809471cb484eead5d262029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{inputs, ...}: {
  configurations = {
    home = {
      builder = inputs.home-manager.lib.homeManagerConfiguration;
      pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;

      users = {
        seth = {};
      };
    };
  };

  flake.homeModules = {
    seth = import ./seth/module;
  };
}