mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
47 lines
724 B
Nix
47 lines
724 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Mostly user-specific configuration
|
|
./variables.nix
|
|
|
|
# Programs
|
|
../../home/programs/nvf
|
|
../../home/programs/shell
|
|
../../home/programs/fetch
|
|
../../home/programs/git
|
|
../../home/programs/git/lazygit.nix
|
|
../../home/programs/nixy
|
|
];
|
|
|
|
home = {
|
|
inherit (config.var) username;
|
|
homeDirectory = "/home/" + config.var.username;
|
|
|
|
packages = with pkgs; [
|
|
# Dev
|
|
go
|
|
nodejs
|
|
python3
|
|
jq
|
|
just
|
|
pnpm
|
|
wireguard-tools
|
|
duckdb
|
|
|
|
# Utils
|
|
zip
|
|
unzip
|
|
btop
|
|
fastfetch
|
|
];
|
|
|
|
# Don't touch this
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|