2024-12-29 00:34:39 +01:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
2024-12-29 10:56:58 +01:00
|
|
|
let
|
2025-01-07 20:18:30 +01:00
|
|
|
common = import ../common.nix;
|
|
|
|
username = common.username;
|
2025-01-08 19:47:02 +01:00
|
|
|
dir = common.dir;
|
2024-12-29 10:56:58 +01:00
|
|
|
in
|
2024-12-29 00:34:39 +01:00
|
|
|
{
|
|
|
|
imports = [
|
2025-01-11 12:15:19 +01:00
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
2024-12-29 00:34:39 +01:00
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
2025-01-12 17:38:51 +01:00
|
|
|
./btop.nix
|
2025-01-11 12:15:19 +01:00
|
|
|
./cava.nix
|
2024-12-31 20:28:24 +01:00
|
|
|
./default-applications.nix
|
2025-01-11 20:59:51 +01:00
|
|
|
./development
|
2024-12-31 14:01:42 +01:00
|
|
|
./fish.nix
|
2025-01-12 12:27:00 +01:00
|
|
|
./freetube.nix
|
2025-01-11 12:46:23 +01:00
|
|
|
./gtk.nix
|
2025-01-12 16:17:44 +01:00
|
|
|
./kitty.nix
|
2025-01-11 11:53:20 +01:00
|
|
|
./mpv.nix
|
2025-01-11 20:59:51 +01:00
|
|
|
./nextcloud.nix
|
2024-12-29 00:34:39 +01:00
|
|
|
./rofi
|
|
|
|
./wlogout
|
2024-12-29 21:49:16 +01:00
|
|
|
./hyprland
|
2025-01-09 22:23:28 +01:00
|
|
|
./spicetify.nix
|
2025-01-11 11:15:48 +01:00
|
|
|
./yazi
|
2024-12-29 00:34:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
2024-12-29 10:56:58 +01:00
|
|
|
username = username;
|
2025-01-08 19:47:02 +01:00
|
|
|
homeDirectory = dir.home;
|
2025-01-02 21:17:58 +01:00
|
|
|
|
|
|
|
sessionVariables = {
|
2025-01-08 19:47:02 +01:00
|
|
|
XDG_PICTURES_DIR = dir.pictures; # Define the default dir for pictures
|
2025-01-02 21:17:58 +01:00
|
|
|
};
|
|
|
|
|
2024-12-29 00:34:39 +01:00
|
|
|
# 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-01-07 20:18:30 +01:00
|
|
|
stateVersion = common.system.version;
|
2024-12-29 00:34:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
programs = {
|
2025-01-08 19:47:02 +01:00
|
|
|
btop.enable = true;
|
|
|
|
|
2024-12-29 00:34:39 +01:00
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
home-manager.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services = {
|
|
|
|
gpg-agent = {
|
|
|
|
enable = true;
|
|
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|