addfastfetch configuration

This commit is contained in:
Seaswimmer 2024-11-18 16:49:06 -05:00
parent 9f5bae49e4
commit 2efa77d291
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
2 changed files with 35 additions and 13 deletions

24
config/fastfetch.jsonc Normal file
View file

@ -0,0 +1,24 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"display",
"de",
"wm",
"terminal",
"cpu",
"gpu",
"memory",
"swap",
"disk",
"break",
"colors"
]
}

View file

@ -3,7 +3,9 @@
home.homeDirectory = "/home/cswimr"; home.homeDirectory = "/home/cswimr";
home.file = { home.file = {
".face.icon".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/assets/img/clownfish.png"; ".face.icon".source =
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/assets/img/clownfish.png";
".config/fastfetch/config.jsonc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/fastfetch.jsonc";
}; };
# link the configuration file in current directory to the specified location in home directory # link the configuration file in current directory to the specified location in home directory
@ -38,23 +40,19 @@
extraConfig = { extraConfig = {
user = { signingkey = "0EC431A8DA8F8087"; }; user = { signingkey = "0EC431A8DA8F8087"; };
commit = { gpgsign = true; }; commit = { gpgsign = true; };
signing = { signByDefault = true; key = "0EC431A8DA8F8087"; }; signing = {
signByDefault = true;
key = "0EC431A8DA8F8087";
};
init = { defaultBranch = "master"; }; init = { defaultBranch = "master"; };
safe = { directory = "/etc/nixos"; }; safe = { directory = "/etc/nixos"; };
url = { url = {
"git@coastalcommits.com:" = { "git@coastalcommits.com:" = {
insteadOf = [ insteadOf =
"https://www.coastalcommits.com/" [ "https://www.coastalcommits.com/" "cc:" "coastalcommits:" ];
"cc:"
"coastalcommits:"
];
}; };
"git@github.com:" = { "git@github.com:" = {
insteadOf = [ insteadOf = [ "https://github.com/" "gh:" "github:" ];
"https://github.com/"
"gh:"
"github:"
];
}; };
}; };
}; };