seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
497B

  1. { pkgs, ... }: {
  2. imports = [
  3. ./fonts
  4. ];
  5. users.users.thorn = {
  6. hashedPassword = "$6$fN9J7sDWZCJU$bybWVlYNHod4qXOTWDl9UZZgn7Bkb17ulM6wTr7hAhyQT4wlmW0An7pcXiYu3SqjSVnEmlma5uujfZ6Z.ZUL91";
  7. # read all pub keys from ./pubkeys
  8. openssh.authorizedKeys.keys = map builtins.readFile (builtins.readDir ./pubkeys);
  9. isNormalUser = true;
  10. home = "/home/thorn";
  11. description = "Thorn Avery";
  12. extraGroups = [ "wheel" "networkmanager" "disks" ];
  13. shell = pkgs.zsh;
  14. };
  15. }