14 lines
151 B
Nix
14 lines
151 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./fish
|
|
./eza
|
|
];
|
|
|
|
home.username = "root";
|
|
home.homeDirectory = "/root";
|
|
|
|
home.stateVersion = "26.05";
|
|
}
|