Adicionado DMS e update de rotina

This commit is contained in:
2026-01-26 17:02:32 -03:00
parent 3bb4c9e33f
commit f0d352a946
14 changed files with 319 additions and 151 deletions
+3
View File
@@ -33,5 +33,8 @@
"widget.gtk.libadwaita-colors.enabled" = false;
};
imports = [
./thunar.nix
];
}
+72
View File
@@ -0,0 +1,72 @@
{ config, lib, inputs, pkgs, ... }: {
programs.niri = {
enable = true;
};
programs.dms-shell = {
enable = true;
#package = inputs.dms.packages.${pkgs.stdenv.hostPlatform.system}.default;
#quickshell.package = inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.quickshell;
systemd = {
enable = true; # Systemd service for auto-start
restartIfChanged = true; # Auto-restart dms.service when dms-shell changes
};
plugins = {
dankBitwarden.enable = true;
#DankKDEConnect.enable = true;
};
# Core features
enableSystemMonitoring = true; # System monitoring widgets (dgop)
enableVPN = true; # VPN management widget
enableDynamicTheming = true; # Wallpaper-based theming (matugen)
enableAudioWavelength = true; # Audio visualizer (cava)
enableCalendarEvents = true; # Calendar integration (khal)
};
imports = [
./thunar.nix
#inputs.dms-plugin-registry.modules.default
];
xdg.portal = {
enable = true;
extraPortals = [pkgs.kdePackages.xdg-desktop-portal-kde];
config.common.default = "*";
};
security.polkit.enable = true;
programs.xwayland.enable = true;
programs.kdeconnect.enable = true;
services.displayManager.dms-greeter = {
enable = true;
compositor.name = "niri";
};
services = {
greetd =
let
session = {
command = "${pkgs.niri}/bin/niri-session";
user = "gui";
};
in
{
enable = true;
settings = {
terminal.vt = 1;
default_session = session;
initial_session = session;
};
};
displayManager.autoLogin = {
user = "gui";
enable = true;
};
};
}
+1
View File
@@ -4,6 +4,7 @@
#./cosmic.nix
#./gnome.nix
./kde.nix
#./dms.nix
];
}
+21
View File
@@ -0,0 +1,21 @@
{ config, lib, inputs, pkgs, ... }: {
programs.xfconf.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-vcs-plugin
thunar-volman
];
};
services = {
gvfs.enable = true;
tumbler.enable = true;
};
}