nixcfg/home/aly.nix

51 lines
1.2 KiB
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{ config, pkgs, ... }:
{
imports = [
./gnome.nix
./shell.nix
2024-03-23 18:01:46 -04:00
./sway.nix
];
2024-02-29 17:06:55 -05:00
home.username = "aly";
home.homeDirectory = "/home/aly";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
2024-03-01 09:17:18 -05:00
2024-02-29 17:06:55 -05:00
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# warp-terminal
2024-03-16 16:12:46 -04:00
discord
2024-03-05 19:05:48 -05:00
github-desktop
obsidian
vscode
2024-02-29 17:06:55 -05:00
];
services.syncthing.enable = true;
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.6;
};
};
2024-03-15 09:37:56 -04:00
};
}