47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{pkgs, ...}: {
|
|
##################################################################################################################
|
|
#
|
|
# All Phil's Home Manager Configuration
|
|
#
|
|
##################################################################################################################
|
|
|
|
imports = [
|
|
../../home/core.nix # Setup Home
|
|
../../home/xdg.nix # Bindings
|
|
|
|
../../home/hyprland # Window Manager
|
|
../../home/themes/dark
|
|
../../home/file_manager/spacefm.nix # File Manager
|
|
|
|
../../home/programs/dev # Dev Tools
|
|
|
|
../../home/programs/media/media.nix
|
|
../../home/programs/media/obs.nix
|
|
../../home/programs/media/spotify.nix
|
|
|
|
../../home/programs/productivity/obsidian.nix
|
|
../../home/programs/productivity/trilium.nix
|
|
# ../../home/programs/productivity/thunderbird.nix
|
|
../../home/programs/productivity/blender.nix
|
|
# ../../home/programs/productivity/onlyoffice.nix
|
|
../../home/programs/productivity/slicer.nix
|
|
../../home/programs/productivity/okular.nix
|
|
|
|
../../home/programs/social/element.nix
|
|
../../home/programs/social/webcord.nix
|
|
|
|
../../home/programs/web/firefox.nix
|
|
|
|
# Games
|
|
# ../../home/programs/games/itch.nix
|
|
../../home/programs/games/steam.nix
|
|
../../home/programs/games/lutris.nix
|
|
../../home/programs/games/opensource.nix
|
|
];
|
|
|
|
programs.git = {
|
|
userName = "DerGrumpf";
|
|
userEmail = "p.keier@beyerstedt-it.de";
|
|
};
|
|
}
|