Iwakura/users/root/home.nix
2021-04-27 22:47:09 +00:00

25 lines
315 B
Nix
Executable File

{ lib, pkgs, ... }: {
imports = [ ];
home = {
# keyboard layout, v v important
keyboard.layout = "dvorak";
# packages that only root needs
packages = with pkgs; [
# system stuff
htop gotop
git
zip p7zip
# essential things
cowsay fortune
];
};
}