dotfiles/hosts/ts-tl-mbp/home-manager.nix

24 lines
514 B
Nix
Raw Normal View History

2023-01-02 03:25:14 +00:00
{ pkgs, ... }:
2023-01-02 03:24:23 +00:00
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.tyrel = { pkgs, ... }: {
2023-01-02 16:56:47 +00:00
# Common Imports
imports = [
../_common/home.nix
../_common/programs.nix
../_common/xdg.nix
];
2023-01-02 17:04:37 +00:00
home.sessionVariables = {
XDG_CONFIG_HOME = "/Users/tyrel/.config";
};
2023-01-02 03:55:07 +00:00
2023-01-02 05:04:28 +00:00
# XDG CONFIGS
2023-01-02 16:56:47 +00:00
xdg.configFile."karabiner" = {
2023-01-02 05:04:28 +00:00
source = ../../home/config/karabiner;
2023-01-02 03:55:07 +00:00
recursive = true;
};
2023-01-02 03:24:23 +00:00
}; # -- HomeManager
}