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