nixcfg/home/aly.nix

54 lines
1.2 KiB
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
./shell.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; [
# warp-terminal
# backblaze-b2
curl
2024-03-16 16:12:46 -04:00
discord
2024-03-02 16:05:03 -05:00
gh
git
2024-03-05 19:05:48 -05:00
github-desktop
obsidian
2024-03-01 09:17:18 -05:00
syncthing
vscode
2024-03-02 16:05:03 -05:00
wget
2024-02-29 17:06:55 -05:00
];
programs.alacritty = {
enable = true;
settings = {
colors = {
primary = {
foreground = "#fafafa";
background = "#000000";
};
draw_bold_text_with_bright_colors = true;
};
font = {
normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; };
size = 11;
};
selection.save_to_clipboard = true;
window = {
blur = true;
# decorations = "None";
dynamic_padding = true;
opacity = 0.8;
};
};
2024-03-15 09:37:56 -04:00
};
}