Compare commits
No commits in common. "c3934c2b56022e8d99a21c1f859c988198babce1" and "cc9d6c362d67dc79c7c92fd17e351d22640787c0" have entirely different histories.
c3934c2b56
...
cc9d6c362d
4 changed files with 43 additions and 5 deletions
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
xin = {
|
xin = {
|
||||||
calcite = import ./xin/calcite.nix;
|
calcite = import ./xin/calcite.nix;
|
||||||
gold = import ./xin/gold;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
25
home/xin/raspite/default.nix
Normal file
25
home/xin/raspite/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -13,10 +13,6 @@
|
||||||
name = "Catppuccin-GTK-Dark";
|
name = "Catppuccin-GTK-Dark";
|
||||||
package = pkgs.magnetic-catppuccin-gtk;
|
package = pkgs.magnetic-catppuccin-gtk;
|
||||||
};
|
};
|
||||||
iconTheme = {
|
|
||||||
name = "Qogir";
|
|
||||||
package = pkgs.qogir-icon-theme;
|
|
||||||
};
|
|
||||||
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -44,6 +44,8 @@ in
|
||||||
modules-right = [
|
modules-right = [
|
||||||
"network#speed"
|
"network#speed"
|
||||||
"custom/separator"
|
"custom/separator"
|
||||||
|
"network#if"
|
||||||
|
"custom/separator"
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"custom/separator"
|
"custom/separator"
|
||||||
"memory"
|
"memory"
|
||||||
|
@ -119,6 +121,22 @@ in
|
||||||
format = " {percentage}%";
|
format = " {percentage}%";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"network#if" = {
|
||||||
|
format = "{ifname}";
|
||||||
|
format-disconnected = "";
|
||||||
|
format-ethernet = "";
|
||||||
|
format-linked = "{ifname} (No IP) ";
|
||||||
|
format-wifi = "{icon}";
|
||||||
|
format-icons = [
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
];
|
||||||
|
interval = 10;
|
||||||
|
};
|
||||||
|
|
||||||
"network#speed" = {
|
"network#speed" = {
|
||||||
format = "{ifname}";
|
format = "{ifname}";
|
||||||
format-disconnected = "";
|
format-disconnected = "";
|
||||||
|
|
Loading…
Add table
Reference in a new issue