added waydroid, removed hyprland

This commit is contained in:
William 2025-03-23 16:40:58 -03:00
parent fae754891e
commit 10a30e27c5
4 changed files with 72 additions and 69 deletions

View file

@ -36,6 +36,8 @@
}; };
}; };
# programs.hyprland.enable = true;
hardware = { hardware = {
xpadneo.enable = true; xpadneo.enable = true;
bluetooth.enable = true; bluetooth.enable = true;

View file

@ -33,6 +33,7 @@
"/var/lib/systemd/coredump" "/var/lib/systemd/coredump"
"/var/lib/systemd/timers" "/var/lib/systemd/timers"
"/var/lib/tailscale" "/var/lib/tailscale"
"/var/lib/waydroid"
"/var/log" "/var/log"
]; ];
}; };

View file

@ -32,6 +32,7 @@
virtualisation = { virtualisation = {
libvirtd.enable = true; libvirtd.enable = true;
lxd.enable = true; lxd.enable = true;
waydroid.enable = true;
}; };
}) })
]; ];

View file

@ -1,5 +1,4 @@
{ {
inputs,
lib, lib,
pkgs, pkgs,
... ...
@ -57,9 +56,9 @@ in
################# #################
### AUTOSTART ### ### AUTOSTART ###
################# #################
exec-once = ${pkgs.gnome-settings-daemon}/libexec/gsd-rfkill # exec-once = ${pkgs.gnome-settings-daemon}/libexec/gsd-rfkill
exec-once = waybar # exec-once = waybar
exec-once = syshud # exec-once = syshud
exec-once = ${lib.getExe heightfittr} exec-once = ${lib.getExe heightfittr}
env = XCURSOR_SIZE,24 env = XCURSOR_SIZE,24
env = HYPRCURSOR_SIZE,24 env = HYPRCURSOR_SIZE,24
@ -218,72 +217,72 @@ in
}; };
services = { services = {
swaync = { # swaync = {
enable = true; # enable = true;
settings = { # settings = {
positionX = "left"; # positionX = "left";
positionY = "top"; # positionY = "top";
layer = "overlay"; # layer = "overlay";
control-center-layer = "top"; # control-center-layer = "top";
layer-shell = true; # layer-shell = true;
cssPriority = "application"; # cssPriority = "application";
control-center-margin-top = 20; # control-center-margin-top = 20;
control-center-margin-bottom = 20; # control-center-margin-bottom = 20;
control-center-margin-right = 20; # control-center-margin-right = 20;
control-center-margin-left = 20; # control-center-margin-left = 20;
notification-2fa-action = true; # notification-2fa-action = true;
notification-inline-replies = false; # notification-inline-replies = false;
notification-icon-size = 64; # notification-icon-size = 64;
notification-body-image-height = 100; # notification-body-image-height = 100;
notification-body-image-width = 200; # notification-body-image-width = 200;
timeout = 10; # timeout = 10;
timeout-low = 5; # timeout-low = 5;
timeout-critical = 0; # timeout-critical = 0;
fit-to-screen = true; # fit-to-screen = true;
relative-timestamps = true; # relative-timestamps = true;
control-center-width = 500; # control-center-width = 500;
control-center-height = 600; # control-center-height = 600;
notification-window-width = 500; # notification-window-width = 500;
keyboard-shortcuts = true; # keyboard-shortcuts = true;
image-visibility = "when-available"; # image-visibility = "when-available";
transition-time = 200; # transition-time = 200;
hide-on-clear = false; # hide-on-clear = false;
hide-on-action = true; # hide-on-action = true;
script-fail-notify = true; # script-fail-notify = true;
widgets = [ # widgets = [
"inhibitors" # "inhibitors"
"title" # "title"
"dnd" # "dnd"
"notifications" # "notifications"
"mpris" # "mpris"
]; # ];
widget-config = { # widget-config = {
inhibitors = { # inhibitors = {
text = "Inhibitors"; # text = "Inhibitors";
button-text = "Clear All"; # button-text = "Clear All";
clear-all-button = true; # clear-all-button = true;
}; # };
title = { # title = {
text = "Notifications"; # text = "Notifications";
clear-all-button = true; # clear-all-button = true;
button-text = "Clear All"; # button-text = "Clear All";
}; # };
dnd = { # dnd = {
text = "Do Not Disturb"; # text = "Do Not Disturb";
}; # };
mpris = { # mpris = {
image-size = 96; # image-size = 96;
image-radius = 12; # image-radius = 12;
}; # };
}; # };
}; # };
}; # };
clipman.enable = true; # clipman.enable = true;
}; };
programs = { # programs = {
hyprlock.enable = true; # hyprlock.enable = true;
}; # };
home.packages = with pkgs; [ home.packages = with pkgs; [
brightnessctl brightnessctl
@ -294,6 +293,6 @@ in
syshud syshud
ulauncher ulauncher
waybar waybar
inputs.mithril.packages.${pkgs.system}.mithril-control-center # inputs.mithril.packages.${pkgs.system}.mithril-control-center
]; ];
} }