Compare commits
No commits in common. "88e15931b0204d2e4b2e416137a0375a1752f932" and "4267f9e95120718ba540c3b092e46a58e6b529ee" have entirely different histories.
88e15931b0
...
4267f9e951
4 changed files with 20 additions and 60 deletions
|
|
@ -7,11 +7,11 @@
|
||||||
./fuzzel.nix
|
./fuzzel.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./gnome.nix
|
./gnome.nix
|
||||||
|
./mako.nix
|
||||||
./niri.nix
|
./niri.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./swaylock.nix
|
./swaylock.nix
|
||||||
./swaync.nix
|
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
./waybar.nix
|
./waybar.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
|
@ -88,7 +88,5 @@
|
||||||
};
|
};
|
||||||
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
|
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.trayscale.enable = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
3
homeConfigurations/vinzenz/mako.nix
Normal file
3
homeConfigurations/vinzenz/mako.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
services.mako.enable = true;
|
||||||
|
}
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
services.swaync = {
|
|
||||||
enable = true;
|
|
||||||
settings = { };
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
spacing = "8";
|
spacing = "8";
|
||||||
modules-left = [
|
modules-left = [
|
||||||
"niri/workspaces"
|
"niri/workspaces"
|
||||||
|
"tray"
|
||||||
"niri/window"
|
"niri/window"
|
||||||
];
|
];
|
||||||
modules-center = [
|
modules-center = [
|
||||||
|
|
@ -33,40 +34,27 @@
|
||||||
"clock"
|
"clock"
|
||||||
];
|
];
|
||||||
modules-right = [
|
modules-right = [
|
||||||
|
"mpris"
|
||||||
#"image"
|
#"image"
|
||||||
"group/status-infos"
|
"gamemode"
|
||||||
"tray"
|
|
||||||
"group/system-tray"
|
"temperature"
|
||||||
|
"cpu"
|
||||||
|
"memory"
|
||||||
|
"disk"
|
||||||
|
"wireplumber"
|
||||||
|
"bluetooth"
|
||||||
|
"backlight"
|
||||||
|
"network"
|
||||||
|
"power-profiles-daemon"
|
||||||
|
"battery"
|
||||||
|
"idle_inhibitor"
|
||||||
"group/group-power"
|
"group/group-power"
|
||||||
];
|
];
|
||||||
|
|
||||||
"group/system-tray" = {
|
|
||||||
orientation = "inherit";
|
|
||||||
modules = [
|
|
||||||
"mpris"
|
|
||||||
"wireplumber"
|
|
||||||
"bluetooth"
|
|
||||||
"backlight"
|
|
||||||
"network"
|
|
||||||
"power-profiles-daemon"
|
|
||||||
"custom/swaync"
|
|
||||||
"idle_inhibitor"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"group/status-infos" = {
|
|
||||||
orientation = "inherit";
|
|
||||||
modules = [
|
|
||||||
"battery"
|
|
||||||
"temperature"
|
|
||||||
"cpu"
|
|
||||||
"memory"
|
|
||||||
"disk"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
"niri/workspaces" = {
|
"niri/workspaces" = {
|
||||||
format = "{icon}";
|
format = "{icon}";
|
||||||
};
|
};
|
||||||
|
|
||||||
"niri/window" = {
|
"niri/window" = {
|
||||||
separate-outputs = true;
|
separate-outputs = true;
|
||||||
icon = true;
|
icon = true;
|
||||||
|
|
@ -237,29 +225,6 @@
|
||||||
tooltip-format-enumerate-connected = "{device_alias}\t{device_address}";
|
tooltip-format-enumerate-connected = "{device_alias}\t{device_address}";
|
||||||
tooltip-format-enumerate-connected-battery = "{device_alias}\t{device_address}\t{device_battery_percentage}%";
|
tooltip-format-enumerate-connected-battery = "{device_alias}\t{device_address}\t{device_battery_percentage}%";
|
||||||
};
|
};
|
||||||
"custom/swaync" =
|
|
||||||
let
|
|
||||||
swaync-client = "${lib.getBin config.services.swaync.package}/bin/swaync-client";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
tooltip = true;
|
|
||||||
format = "{0}{icon} ";
|
|
||||||
format-icons = {
|
|
||||||
notification = "";
|
|
||||||
none = "";
|
|
||||||
dnd-notification = "";
|
|
||||||
dnd-none = "";
|
|
||||||
inhibited-notification = "";
|
|
||||||
inhibited-none = "";
|
|
||||||
dnd-inhibited-notification = "";
|
|
||||||
dnd-inhibited-none = "";
|
|
||||||
};
|
|
||||||
return-type = "json";
|
|
||||||
exec = "${swaync-client} --subscribe-waybar";
|
|
||||||
on-click = "${swaync-client} --toggle-panel --skip-wait";
|
|
||||||
on-click-right = "${swaync-client} --toggle-dnd --skip-wait";
|
|
||||||
escape = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue