60 lines
1.1 KiB
Nix
Raw Normal View History

{
pkgs,
inputs,
...
}:
let
common = import ../common.nix;
username = common.username;
dir = common.dir;
in
{
imports = [
inputs.catppuccin.homeManagerModules.catppuccin
inputs.nixvim.homeManagerModules.nixvim
./btop.nix
./cava.nix
./default-applications.nix
./development
./fish.nix
./freetube.nix
2025-01-11 12:46:23 +01:00
./gtk.nix
./kitty.nix
2025-01-11 11:53:20 +01:00
./mpv.nix
./nextcloud.nix
./rofi
./wlogout
./hyprland
2025-01-09 22:23:28 +01:00
./spicetify.nix
2025-01-11 11:15:48 +01:00
./yazi
];
home = {
username = username;
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.
stateVersion = common.system.version;
};
programs = {
btop.enable = true;
# Let Home Manager install and manage itself.
home-manager.enable = true;
};
services = {
gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
};
};
}