configuration.nix/home/default.nix

12 lines
456 B
Nix
Raw Normal View History

2024-01-07 12:33:29 +01:00
{ system, pkgs, home-manager, modules, nid, ... }:
2023-11-21 16:16:55 +01:00
let
2024-01-29 08:48:15 +01:00
ivand-programs = with modules.home.programs; [ nvim zsh tmux git chromium firefox kitty lf obs-studio sway swaylock browserpass bottom gpg comma nushell ];
2023-11-21 16:16:55 +01:00
ivand-packages = with modules.home.packages; [ dev essential media ];
in
2023-11-21 15:53:40 +01:00
{
2023-11-18 08:23:16 +01:00
ivand = home-manager.lib.homeManagerConfiguration {
2023-11-18 08:27:55 +01:00
inherit pkgs;
2024-01-07 12:33:29 +01:00
modules = [ ./ivand nid.hmModules.nix-index ] ++ ivand-programs ++ ivand-packages;
2023-11-18 08:23:16 +01:00
};
}