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-22 11:15:18 -04:00
|
|
|
./shell.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-22 08:59:55 -04:00
|
|
|
# backblaze-b2
|
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-03-22 18:26:49 -04:00
|
|
|
nixfmt
|
2024-02-29 17:06:55 -05:00
|
|
|
];
|
2024-03-15 00:01:19 -04:00
|
|
|
|
2024-03-22 11:15:18 -04:00
|
|
|
programs.alacritty = {
|
2024-03-15 09:30:50 -04:00
|
|
|
enable = true;
|
2024-03-22 11:15:18 -04:00
|
|
|
settings = {
|
2024-03-22 13:41:10 -04:00
|
|
|
colors = {
|
|
|
|
primary = {
|
|
|
|
foreground = "#fafafa";
|
|
|
|
background = "#000000";
|
|
|
|
};
|
|
|
|
draw_bold_text_with_bright_colors = true;
|
|
|
|
};
|
2024-03-22 13:24:12 -04:00
|
|
|
font = {
|
|
|
|
normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; };
|
|
|
|
size = 11;
|
|
|
|
};
|
2024-03-22 11:15:18 -04:00
|
|
|
selection.save_to_clipboard = true;
|
|
|
|
window = {
|
2024-03-22 13:41:10 -04:00
|
|
|
blur = true;
|
|
|
|
# decorations = "None";
|
2024-03-22 11:15:18 -04:00
|
|
|
dynamic_padding = true;
|
2024-03-22 20:15:22 -04:00
|
|
|
opacity = 0.6;
|
2024-03-22 11:15:18 -04:00
|
|
|
};
|
|
|
|
};
|
2024-03-15 09:37:56 -04:00
|
|
|
};
|
2024-03-01 07:46:59 -05:00
|
|
|
}
|