Misc: Add nixfmt-tree and run nix fmt

This commit is contained in:
2026-07-30 15:03:14 +02:00
parent 3831cc1540
commit b0a83e2ad5
29 changed files with 200 additions and 132 deletions
+25 -7
View File
@@ -1,9 +1,11 @@
{
flake.modules.homeManager.ashell =
{ config
, lib
, ...
}: {
{
config,
lib,
...
}:
{
programs.ashell = {
enable = true;
systemd.enable = true;
@@ -12,17 +14,33 @@
modules = {
left = [ "Workspaces" ];
center = [ "Clock" ];
right = [ "Tray" [ "SystemInfo" "Settings" ] ];
right = [
"Tray"
[
"SystemInfo"
"Settings"
]
];
};
system_info.indicators = [ "Cpu" "Memory" "Temperature" "DownloadSpeed" "UploadSpeed" ];
system_info.indicators = [
"Cpu"
"Memory"
"Temperature"
"DownloadSpeed"
"UploadSpeed"
];
settings.indicators = [ "Battery" ];
appearance = lib.mkIf config.catppuccin.enable {
success_color = "#a6e3a1";
text_color = "#cdd6f4";
workspace_colors = [ "#fab387" "#b4befe" "#cba6f7" ];
workspace_colors = [
"#fab387"
"#b4befe"
"#cba6f7"
];
primary_color = {
base = "#fab387";