about summary refs log tree commit diff
path: root/configs/shared/.config/nixpkgs/home.nix
blob: 8307d6b86a2981b9d2ecc0a07f6f24b75c2f0be9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, pkgs, ... }:

{
  home.packages = with pkgs; [
  ];

  home.stateVersion = "19.09";

  ##############################################################################
  # Programs
  ##############################################################################

  programs.home-manager = {
    enable = true;
    path = builtins.toPath ~/home-manager;
  };

  ##############################################################################
  # Services
  ##############################################################################
}