Files
nixconfig/modules/home-manager/programs.nix

26 lines
450 B
Nix

{ config, pkgs, inputs, ... }:
{
# user packages
home.packages = with pkgs; [
devenv
discord
fastfetch
keepassxc
teamspeak6-client
typst
zathura
];
# services and other software
services.syncthing.enable = true;
programs.home-manager.enable = true;
# browsers
programs.chromium.enable = true;
programs.firefox = {
enable = true;
configPath = "${config.xdg.configHome}/mozilla/firefox";
};
}