aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/minimal.nix
blob: d519374f480321fda9f49af3a5aac4f406960f05 (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 = [
    ../programs/cli/bat.nix
    ../programs/cli/eza.nix
    ../programs/cli/tmux.nix
    ../programs/shell/fish.nix
  ];

  home.homeDirectory = "/home/${username}";
  home.stateVersion = "25.05";
}