first commit
This commit is contained in:
@@ -5,17 +5,32 @@
|
||||
home.username = "test";
|
||||
home.homeDirectory = "/home/test";
|
||||
|
||||
# 允许安装闭源软件(比如 QQ)
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# 你的个人日常软件全写在这里!
|
||||
home.packages = with pkgs; [
|
||||
qq
|
||||
fastfetch
|
||||
claude-code
|
||||
# 你还可以加上其他软件,比如网易云、微信等
|
||||
jetbrains-toolbox
|
||||
];
|
||||
|
||||
# 用 Home Manager 固定 Fcitx5 输入法配置,仅保留拼音
|
||||
home.file.".config/fcitx5/profile".text = ''
|
||||
[Groups/0]
|
||||
Name=Default
|
||||
Default Layout=us
|
||||
DefaultIM=pinyin
|
||||
|
||||
[Groups/0/Items/0]
|
||||
Name=keyboard-us
|
||||
Layout=
|
||||
|
||||
[Groups/0/Items/1]
|
||||
Name=pinyin
|
||||
Layout=
|
||||
|
||||
[GroupOrder]
|
||||
0=Default
|
||||
'';
|
||||
|
||||
# 以后你的 niri、KDE 等 dotfiles 配置都可以通过这种方式管理
|
||||
# home.file.".config/niri/config.kdl".source = ./niri-config.kdl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user