mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
move ashell config to nix
This commit is contained in:
72
modules/ashell.nix
Normal file
72
modules/ashell.nix
Normal file
@@ -0,0 +1,72 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.ashell = {
|
||||
enable = true;
|
||||
package = null;
|
||||
settings = {
|
||||
outputs = {
|
||||
Targets = [ "DP-1" ];
|
||||
};
|
||||
position = "Bottom";
|
||||
modules = {
|
||||
|
||||
left = [
|
||||
"Clock"
|
||||
"Workspaces"
|
||||
];
|
||||
center = [ "WindowTitle" ];
|
||||
right = [
|
||||
"Privacy"
|
||||
"MediaPlayer"
|
||||
"SystemInfo"
|
||||
[
|
||||
"Tray"
|
||||
"Settings"
|
||||
]
|
||||
];
|
||||
};
|
||||
|
||||
clock = {
|
||||
format = "%H:%M | %e.%m ";
|
||||
};
|
||||
|
||||
settings = {
|
||||
remove_airplane_btn = true;
|
||||
};
|
||||
|
||||
appearance = {
|
||||
scale_factor = 1.2;
|
||||
success_color = "#a6e3a1";
|
||||
text_color = "#cdd6f4";
|
||||
workspace_colors = [
|
||||
"#fab387"
|
||||
"#b4befe"
|
||||
"#cba6f7"
|
||||
];
|
||||
|
||||
primary_color = {
|
||||
base = "#fab387";
|
||||
text = "#1e1e2e";
|
||||
};
|
||||
|
||||
danger_color = {
|
||||
base = "#f38ba8";
|
||||
weak = "#f9e2af";
|
||||
};
|
||||
|
||||
background_color = {
|
||||
base = "#1e1e2e";
|
||||
weak = "#313244";
|
||||
strong = "#45475a";
|
||||
};
|
||||
|
||||
secondary_color = {
|
||||
base = "#11111b";
|
||||
strong = "#1b1b25";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{ pkgs, lib, ... }:
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = lib.mkForce {
|
||||
enable = true;
|
||||
package = pkgs.runCommand "dummy-kitty" { } "mkdir $out";
|
||||
package = null;
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
dynamic_background_opacity = true;
|
||||
|
||||
Reference in New Issue
Block a user