aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/minimal.nix
blob: 4bccdb598d2b4132e22c3750d9e8599ac98206f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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";
}