feat(home): Hyfetch & Neofetch
This commit is contained in:
parent
fe80ace7db
commit
8600d0d0a7
4 changed files with 56 additions and 31 deletions
|
@ -28,6 +28,7 @@ in
|
|||
git = enabled;
|
||||
glow = enabled;
|
||||
gpg = enabled;
|
||||
hyfetch = enabled;
|
||||
journalctl = enabled;
|
||||
neo = enabled;
|
||||
systemctl = enabled;
|
||||
|
|
38
modules/home/programs/hyfetch/default.nix
Normal file
38
modules/home/programs/hyfetch/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib.${namespace}) mkEnableModule;
|
||||
|
||||
cfg = config.${namespace}.programs.hyfetch;
|
||||
in
|
||||
{
|
||||
options = mkEnableModule "programs.hyfetch";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
preset = "lesbian";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.7;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [ ];
|
||||
fore_back = null;
|
||||
};
|
||||
backend = "neofetch";
|
||||
args = null;
|
||||
distro = null;
|
||||
pride_month_shown = [ ];
|
||||
pride_month_disable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,14 +1,23 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
# TODO: Switch to fastfetch
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
];
|
||||
lib,
|
||||
config,
|
||||
namespace,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
|
||||
xdg.configFile."neofetch/config.conf" = {
|
||||
enable = true;
|
||||
cfg = config.${namespace}.programs.hyfetch;
|
||||
in
|
||||
{
|
||||
config = mkIf cfg.enable {
|
||||
# TODO: Switch to fastfetch
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
];
|
||||
|
||||
text = # bash
|
||||
xdg.configFile."neofetch/config.conf".text = # bash
|
||||
''
|
||||
print_info() {
|
||||
prin " "
|
|
@ -1,23 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
preset = "lesbian";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.7;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [ ];
|
||||
fore_back = null;
|
||||
};
|
||||
backend = "neofetch";
|
||||
args = null;
|
||||
distro = null;
|
||||
pride_month_shown = [ ];
|
||||
pride_month_disable = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue