2024-02-29 17:06:55 -05:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2024-03-06 18:07:55 -05:00
|
|
|
|
imports = [
|
|
|
|
|
../common.nix
|
|
|
|
|
];
|
|
|
|
|
|
2024-02-29 17:06:55 -05:00
|
|
|
|
# TODO please change the username & home directory to your own
|
|
|
|
|
home.username = "aly";
|
|
|
|
|
home.homeDirectory = "/home/aly";
|
|
|
|
|
|
2024-03-01 09:17:18 -05:00
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
|
|
2024-02-29 17:06:55 -05:00
|
|
|
|
# Packages that should be installed to the user profile.
|
|
|
|
|
home.packages = with pkgs; [
|
2024-03-01 07:52:34 -05:00
|
|
|
|
curl
|
2024-02-29 17:06:55 -05:00
|
|
|
|
eza # A modern replacement for ‘ls’
|
|
|
|
|
fzf # A command-line fuzzy finder
|
2024-03-02 16:05:03 -05:00
|
|
|
|
gh
|
2024-03-01 07:52:34 -05:00
|
|
|
|
git
|
2024-03-05 19:05:48 -05:00
|
|
|
|
github-desktop
|
2024-03-01 09:17:18 -05:00
|
|
|
|
syncthing
|
2024-03-12 17:35:00 -04:00
|
|
|
|
vscode
|
2024-03-03 13:45:57 -05:00
|
|
|
|
warp-terminal
|
2024-03-02 16:05:03 -05:00
|
|
|
|
wget
|
2024-02-29 17:06:55 -05:00
|
|
|
|
];
|
2024-03-01 07:46:59 -05:00
|
|
|
|
}
|