seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
315B

  1. { lib, pkgs, ... }: {
  2. imports = [ ];
  3. home = {
  4. # keyboard layout, v v important
  5. keyboard.layout = "dvorak";
  6. # packages that only root needs
  7. packages = with pkgs; [
  8. # system stuff
  9. htop gotop
  10. git
  11. zip p7zip
  12. # essential things
  13. cowsay fortune
  14. ];
  15. };
  16. }