rpi4: rename to raspite, add password

This commit is contained in:
xinyangli 2023-04-23 11:06:57 +08:00
parent 41ce883dd8
commit ec6476d470
7 changed files with 125 additions and 27 deletions

View file

@ -8,7 +8,8 @@
dig
du-dust # du + rust
zoxide # autojumper
man-pages
file
# man-pages
tree
wget
tmux

View file

@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
imports = [
../common
];
home.username = "xin";
home.homeDirectory = "/home/xin";
home.stateVersion = "23.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
accounts.email.accounts.gmail = {
primary = true;
address = "lixinyang411@gmail.com";
flavor = "gmail.com";
};
accounts.email.accounts.whu = {
address = "lixinyang411@whu.edu.cn";
};
accounts.email.accounts.foxmail = {
address = "lixinyang411@foxmail.com";
};
}