nix-config/users/phil/home.nix

55 lines
1.5 KiB
Nix
Raw Permalink Normal View History

2025-04-08 19:51:19 +02:00
{pkgs, catppuccin, ...}: {
2025-03-24 12:11:44 +01:00
##################################################################################################################
#
2025-03-24 21:50:50 +01:00
# All Phil's Home Manager Configuration
2025-03-24 12:11:44 +01:00
#
##################################################################################################################
imports = [
2025-03-27 14:59:12 +01:00
../../home/core.nix # Setup Home
../../home/xdg.nix # Bindings
../../home/hyprland # Window Manager
2025-04-08 19:51:19 +02:00
# ../../home/themes/dark
2025-04-07 23:13:13 +02:00
../../home/hyprland/waybar/double-monitor.nix
2025-04-02 19:43:31 +02:00
2025-03-27 15:13:31 +01:00
../../home/programs/dev # Dev Tools
2025-03-27 14:59:12 +01:00
../../home/programs/media/media.nix
2025-04-10 11:33:28 +02:00
../../home/programs/media/audacity.nix
2025-03-27 14:59:12 +01:00
../../home/programs/media/obs.nix
2025-04-16 21:54:10 +02:00
../../home/programs/media/spotify/spotify.nix
2025-04-03 12:58:29 +02:00
../../home/programs/productivity/notesnook.nix
2025-03-27 14:59:12 +01:00
../../home/programs/productivity/blender.nix
../../home/programs/productivity/slicer.nix
2025-04-01 14:02:11 +02:00
../../home/programs/productivity/okular.nix
2025-04-07 23:13:13 +02:00
../../home/programs/productivity/obsidian.nix
2025-04-01 14:02:11 +02:00
2025-03-27 14:59:12 +01:00
../../home/programs/social/element.nix
../../home/programs/social/webcord.nix
2025-04-08 19:51:19 +02:00
../../home/programs/social/zapzap.nix
2025-03-27 14:59:12 +01:00
../../home/programs/web/firefox.nix
2025-04-07 23:15:28 +02:00
2025-03-27 15:14:41 +01:00
# Games
2025-04-07 23:15:28 +02:00
../../home/programs/games/itch.nix
2025-04-10 11:33:28 +02:00
# ../../home/programs/games/steam.nix
2025-03-27 15:14:41 +01:00
../../home/programs/games/lutris.nix
2025-04-08 22:59:34 +02:00
../../home/programs/games/opensource.nix
2025-04-16 21:54:10 +02:00
../../home/programs/games/airshipper.nix
2025-04-08 19:51:19 +02:00
catppuccin.homeModules.catppuccin
2025-03-24 12:11:44 +01:00
];
2025-04-08 19:51:19 +02:00
catppuccin = {
enable = true;
flavor = "mocha";
};
2025-03-24 12:11:44 +01:00
programs.git = {
userName = "DerGrumpf";
userEmail = "p.keier@beyerstedt-it.de";
};
2025-03-27 15:04:38 +01:00
}