rpi4: rename to raspite, add password
This commit is contained in:
parent
41ce883dd8
commit
ec6476d470
7 changed files with 125 additions and 27 deletions
|
@ -8,7 +8,8 @@
|
|||
dig
|
||||
du-dust # du + rust
|
||||
zoxide # autojumper
|
||||
man-pages
|
||||
file
|
||||
# man-pages
|
||||
tree
|
||||
wget
|
||||
tmux
|
||||
|
|
28
home/xin/raspite/default.nix
Normal file
28
home/xin/raspite/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue