summaryrefslogtreecommitdiff
path: root/users/seth/home.nix
blob: a10f061b9724236af31999a809478db9ebd9fc83 (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
{
  lib,
  pkgs,
  ...
}: {
  imports = [
    ./programs
    ./shell
  ];

  home = {
    username = "seth";
    homeDirectory = "/home/seth";
    stateVersion = "23.05";
  };

  nix.package = lib.mkDefault pkgs.nixFlakes;

  xdg = {
    enable = true;
    configFile."nixpkgs/config.nix".text = ''
      {
       	allowUnfree = true;
        allowUnsupportedSystem = true;
      }
    '';
  };
}