configuration.nix/home/default.nix
2024-04-17 16:19:47 +03:00

37 lines
583 B
Nix

{ system, pkgs, home-manager, modules, nid, ... }:
let
ivand-programs = with modules.home.programs; [
nvim
zsh
tmux
git
chromium
firefox
kitty
lf
obs-studio
sway
swaylock
browserpass
bottom
gpg
comma
nushell
waybar
tealdeer
pueue
starship
];
ivand-packages = with modules.home.packages; [
dev
essential
media
];
in
{
ivand = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./ivand nid.hmModules.nix-index ] ++ ivand-programs ++ ivand-packages;
};
}