seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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