seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
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. }