blob: 4bccdb598d2b4132e22c3750d9e8599ac98206f7 (
plain) (
tree)
|
|
{ config, ... }:
let
inherit (config.home) username;
in
{
imports = [
./eza.nix
];
programs.bat.enable = true;
programs.tmux.enable = true;
home.homeDirectory = "/home/${username}";
home.stateVersion = "25.05";
}
|