mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
move stuff around
This commit is contained in:
32
home.nix
32
home.nix
@@ -27,22 +27,23 @@
|
||||
# general packages list
|
||||
./modules/packages.nix
|
||||
# cli tools
|
||||
./modules/fish.nix
|
||||
./modules/nixvim.nix
|
||||
./modules/yazi.nix
|
||||
./modules/btop.nix
|
||||
./modules/atuin.nix
|
||||
./modules/zoxide.nix
|
||||
./modules/mako.nix
|
||||
./modules/ssh.nix
|
||||
./modules/bat.nix
|
||||
./modules/git.nix
|
||||
./modules/cli/fish.nix
|
||||
./modules/cli/nixvim.nix
|
||||
./modules/cli/yazi.nix
|
||||
./modules/cli/btop.nix
|
||||
./modules/cli/atuin.nix
|
||||
./modules/cli/zoxide.nix
|
||||
./modules/cli/ssh.nix
|
||||
./modules/cli/bat.nix
|
||||
./modules/cli/git.nix
|
||||
./modules/cli/fastfetch.nix
|
||||
# gui tools
|
||||
./modules/kitty.nix
|
||||
./modules/satty.nix
|
||||
./modules/gui/kitty.nix
|
||||
./modules/gui/satty.nix
|
||||
./modules/gui/mako.nix
|
||||
# status bars
|
||||
./modules/ashell.nix
|
||||
./modules/waybar.nix
|
||||
./modules/bars/ashell.nix
|
||||
./modules/bars/waybar.nix
|
||||
# hypr
|
||||
./modules/hypr/hyprland.nix
|
||||
./modules/hypr/hyprlauncher.nix
|
||||
@@ -56,12 +57,9 @@
|
||||
|
||||
# === DOTFILES IMPORT ===
|
||||
home.file = {
|
||||
".config/fastfetch".source = ./dotfiles/fastfetch;
|
||||
".config/MangoHud".source = ./dotfiles/mangohud;
|
||||
# ".config/nvim".source = ./dotfiles/nvim;
|
||||
".config/gtk-3.0/settings.ini".source = ./dotfiles/gtk-3.0/settings.ini;
|
||||
".config/gtk-4.0".source = ./dotfiles/gtk-4.0;
|
||||
# ".config/hypr".source = ./dotfiles/hypr;
|
||||
".config/mimeapps.list".source = ./dotfiles/mimeapps.list;
|
||||
".local/bin".source = ./scripts;
|
||||
};
|
||||
|
||||
62
modules/cli/fastfetch.nix
Normal file
62
modules/cli/fastfetch.nix
Normal file
@@ -0,0 +1,62 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
modules = [
|
||||
"title"
|
||||
"separator"
|
||||
"os"
|
||||
"host"
|
||||
"kernel"
|
||||
"packages"
|
||||
"separator"
|
||||
"wm"
|
||||
"shell"
|
||||
"terminal"
|
||||
"theme"
|
||||
"font"
|
||||
"locale"
|
||||
"separator"
|
||||
"display"
|
||||
"cpu"
|
||||
"gpu"
|
||||
"memory"
|
||||
"disk"
|
||||
"battery"
|
||||
"separator"
|
||||
"wifi"
|
||||
"localip"
|
||||
"break"
|
||||
"colors"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
xdg.configFile."fastfetch/startup.jsonc".text = builtins.toJSON {
|
||||
logo = {
|
||||
source = "arch_small";
|
||||
padding = {
|
||||
bottom = 1;
|
||||
};
|
||||
};
|
||||
display = {
|
||||
separator = " ➜ ";
|
||||
};
|
||||
modules = [
|
||||
"title"
|
||||
"kernel"
|
||||
"packages"
|
||||
"shell"
|
||||
"battery"
|
||||
{
|
||||
type = "separator";
|
||||
string = " • ";
|
||||
}
|
||||
"break"
|
||||
"break"
|
||||
"break"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user