summaryrefslogtreecommitdiff
path: root/users/seth/home.nix
blob: 239782ecfaa79875da8858ff6bd4a60f61c9db59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  lib,
  pkgs,
  ...
}: {
  imports = [
    ./programs
    ./shell
  ];

  nix.package = lib.mkDefault pkgs.nixFlakes;
  xdg = {
    enable = true;
    configFile."nixpkgs/config.nix".text = ''
      {
       	allowUnfree = true;
        allowUnsupportedSystem = true;
      }
    '';
  };
  home.stateVersion = "23.05";
}