2025-04-12 23:29:10 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
common,
|
2025-04-15 21:14:17 +00:00
|
|
|
systemConfig,
|
2025-04-12 23:29:10 +02:00
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
dir = common.dir;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
inputs.catppuccin.homeModules.catppuccin
|
|
|
|
./cursors.nix
|
|
|
|
./default-applications.nix
|
|
|
|
./development
|
|
|
|
./freetube.nix
|
|
|
|
./gtk.nix
|
|
|
|
./gpg.nix
|
|
|
|
./kitty.nix
|
|
|
|
./media
|
|
|
|
./nextcloud.nix
|
|
|
|
./rofi
|
|
|
|
./hyprland
|
2025-04-16 15:09:53 +02:00
|
|
|
./shell
|
2025-04-12 23:29:10 +02:00
|
|
|
./spicetify.nix
|
|
|
|
./zen
|
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
2025-04-18 19:49:14 +02:00
|
|
|
username = systemConfig.username;
|
2025-04-12 23:29:10 +02:00
|
|
|
homeDirectory = dir.home;
|
|
|
|
|
|
|
|
sessionVariables = {
|
|
|
|
XDG_PICTURES_DIR = dir.pictures; # Define the default dir for pictures
|
|
|
|
};
|
|
|
|
|
|
|
|
# You can update Home Manager without changing this value. See
|
|
|
|
# the Home Manager release notes for a list of state version
|
|
|
|
# changes in each release.
|
2025-04-15 21:14:17 +00:00
|
|
|
stateVersion = systemConfig.version;
|
2025-04-12 23:29:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Adds pkgs.unstable in order to fetch packages from unstable repositories
|
|
|
|
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|