nixcfg/home/aly.nix
2024-03-13 13:28:54 -04:00

28 lines
563 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, pkgs, ... }:
{
imports = [
./common.nix
];
# TODO please change the username & home directory to your own
home.username = "aly";
home.homeDirectory = "/home/aly";
services.syncthing.enable = true;
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
curl
eza # A modern replacement for ls
fzf # A command-line fuzzy finder
gh
git
github-desktop
syncthing
vscode
warp-terminal
wget
];
}