16 lines
206 B
Nix
16 lines
206 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.username = "fossil";
|
|
home.homeDirectory = "/home/fossil";
|
|
|
|
home.packages = with pkgs; [
|
|
cmus
|
|
zellij
|
|
steam
|
|
xonotic
|
|
nicotine-plus
|
|
];
|
|
|
|
}
|