dotfiles/home/default.nix
2024-04-16 01:16:52 +02:00

56 lines
1.1 KiB
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
in {
imports = [./apps ./secrets ./xdg.nix];
home = {
packages = with pkgs; ([
_1password
age
age-plugin-yubikey
catppuccin-catwalk
catppuccin-whiskers
deno
fd
ffmpeg
file
gh
git-crypt
gocryptfs
imagemagick
just
mdcat
nix-output-monitor
nur.repos.nekowinston.icat
nvd
ranger
ripgrep
wakatime
watchexec
]
++ lib.optionals (config.isGraphical && isLinux) [
_1password-gui
nur.repos.nekowinston.uhk-agent
neovide
]);
sessionVariables = lib.mkIf isDarwin {
SSH_AUTH_SOCK = "${config.programs.gpg.homedir}/S.gpg-agent.ssh";
};
stateVersion = "23.05";
};
home.mac-wallpaper = ./wallpapers/dhm_1610.png;
programs = {
home-manager.enable = true;
man.enable = true;
taskwarrior.enable = true;
};
age.secrets."wakatime.cfg".path = "${config.home.homeDirectory}/.wakatime.cfg";
}