2024-02-29 17:06:55 -05:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2024-03-06 18:07:55 -05:00
|
|
|
imports = [
|
2024-03-13 13:28:54 -04:00
|
|
|
./common.nix
|
2024-03-06 18:07:55 -05:00
|
|
|
];
|
|
|
|
|
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-16 16:12:30 -04:00
|
|
|
# warp-terminal
|
2024-03-01 07:52:34 -05:00
|
|
|
curl
|
2024-03-16 16:12:46 -04:00
|
|
|
discord
|
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-16 16:12:30 -04:00
|
|
|
obsidian
|
2024-03-01 09:17:18 -05:00
|
|
|
syncthing
|
2024-03-12 17:35:00 -04:00
|
|
|
vscode
|
2024-03-02 16:05:03 -05:00
|
|
|
wget
|
2024-02-29 17:06:55 -05:00
|
|
|
];
|
2024-03-15 00:01:19 -04:00
|
|
|
|
2024-03-15 09:30:50 -04:00
|
|
|
programs.eza = {
|
|
|
|
enable = true;
|
|
|
|
git = true;
|
2024-03-15 09:37:56 -04:00
|
|
|
extraOptions = [
|
|
|
|
"--group-directories-first"
|
|
|
|
"--header"
|
|
|
|
];
|
|
|
|
};
|
2024-03-15 00:01:19 -04:00
|
|
|
|
|
|
|
programs.fzf.enable = true;
|
|
|
|
programs.nnn.enable = true;
|
|
|
|
programs.tmux.enable = true;
|
2024-03-01 07:46:59 -05:00
|
|
|
}
|