19 lines
326 B
Nix
19 lines
326 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# user packages
|
|
home.packages = with pkgs; [
|
|
discord
|
|
fastfetch
|
|
keepassxc
|
|
nerd-fonts.sauce-code-pro
|
|
powerline-fonts
|
|
powerline-symbols
|
|
screenfetch
|
|
];
|
|
|
|
# services and other software
|
|
services.syncthing.enable = true;
|
|
programs.home-manager.enable = true;
|
|
}
|