mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
40 lines
761 B
Nix
40 lines
761 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./common.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
|
|
curl
|
|
gh
|
|
git
|
|
github-desktop
|
|
obsidian
|
|
syncthing
|
|
vscode
|
|
wget
|
|
];
|
|
|
|
programs.eza = {
|
|
enable = true;
|
|
git = true;
|
|
extraOptions = [
|
|
"--group-directories-first"
|
|
"--header"
|
|
];
|
|
};
|
|
|
|
programs.fzf.enable = true;
|
|
programs.nnn.enable = true;
|
|
programs.tmux.enable = true;
|
|
}
|