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

17 lines
271 B
Nix

{ config, pkgs, inputs, ... }:
{
# user packages
home.packages = with pkgs; [
discord
teamspeak6-client
fastfetch
keepassxc
devenv
];
# services and other software
services.syncthing.enable = true;
programs.home-manager.enable = true;
}