16 lines
254 B
Nix
16 lines
254 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# user packages
|
|
home.packages = with pkgs; [
|
|
discord
|
|
fastfetch
|
|
keepassxc
|
|
screenfetch
|
|
];
|
|
|
|
# services and other software
|
|
services.syncthing.enable = true;
|
|
programs.home-manager.enable = true;
|
|
}
|