56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
#../../modules/home-manager/sway.nix
|
|
#../../modules/home-manager/i3
|
|
#../../modules/home-manager/hyprland.nix
|
|
#../../modules/home-manager/hyprland.nix
|
|
../../modules/home-manager/niri
|
|
../../modules/home-manager/noctalia.nix
|
|
../../modules/home-manager/git.nix
|
|
../../modules/home-manager/neovim
|
|
../../modules/home-manager/kitty.nix
|
|
../../modules/home-manager/zsh.nix
|
|
../../modules/home-manager/tmux.nix
|
|
../../modules/home-manager/taskwarrior.nix
|
|
../../modules/home-manager/email-personal.nix
|
|
../../modules/home-manager/syncthing.nix
|
|
../../modules/home-manager/bitwarden.nix
|
|
../../modules/home-manager/kubernetes.nix
|
|
../../modules/home-manager/nix-index.nix
|
|
../../modules/home-manager/bitwarden.nix
|
|
../../modules/home-manager/direnv.nix
|
|
../../modules/home-manager/jq.nix
|
|
../../modules/home-manager/lazygit.nix
|
|
../../modules/home-manager/man.nix
|
|
../../modules/home-manager/gpg.nix
|
|
../../modules/home-manager/latex.nix
|
|
../../modules/home-manager/emacs
|
|
];
|
|
home.username = "mthomson";
|
|
home.homeDirectory = "/home/mthomson";
|
|
home.stateVersion = "23.11";
|
|
|
|
# services.mako.enable = true;
|
|
# programs.fuzzel.enable = true;
|
|
# programs.waybar = {
|
|
# enable = true;
|
|
# systemd.enable = true;
|
|
# };
|
|
|
|
home.packages = with pkgs; [
|
|
brightnessctl
|
|
firefox
|
|
google-chrome
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATH = "\${HOME}/.steam/root/compatibilitytools.d";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|