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

19 lines
297 B
Nix

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