blob: ac0d84f7f02b667ef935a734c2104ecb0c35e4d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, ... }:
let
inherit (config.home) username;
in
{
imports = [
./eza.nix
];
programs.bat.enable = true;
home.homeDirectory = "/home/${username}";
home.stateVersion = "25.05";
}
|