nixcfg/home/aly.nix

28 lines
563 B
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{ config, pkgs, ... }:
{
imports = [
2024-03-13 13:28:54 -04:00
./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; [
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
git
2024-03-05 19:05:48 -05:00
github-desktop
2024-03-01 09:17:18 -05:00
syncthing
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
];
}