mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
44 lines
911 B
Nix
44 lines
911 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
./shell.nix
|
|
];
|
|
|
|
# TODO please change the username & home directory to your own
|
|
home.username = "aly";
|
|
home.homeDirectory = "/home/aly";
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
# warp-terminal
|
|
# backblaze-b2
|
|
curl
|
|
discord
|
|
gh
|
|
git
|
|
github-desktop
|
|
obsidian
|
|
syncthing
|
|
vscode
|
|
wget
|
|
];
|
|
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
selection.save_to_clipboard = true;
|
|
window = {
|
|
# blur = true;
|
|
decorations = "None";
|
|
dynamic_padding = true;
|
|
opacity = 0.8;
|
|
startup_mode = "Maximized";
|
|
};
|
|
};
|
|
};
|
|
}
|