Iwakura/users/root/home.nix

25 lines
315 B
Nix
Raw Normal View History

2021-04-27 18:47:09 -04:00
{ 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
];
};
}