mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
25 lines
336 B
Nix
25 lines
336 B
Nix
# ~/nixconfig/home-manager/death916-homelab.nix.new
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [ ../modules/home-manager/common.nix ];
|
|
|
|
home.username = "death916";
|
|
home.homeDirectory = "/home/death916";
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
fastfetch
|
|
wget
|
|
zellij
|
|
systemctl-tui
|
|
gemini-cli
|
|
];
|
|
}
|