mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
38 lines
900 B
Nix
Executable File
38 lines
900 B
Nix
Executable File
{ pkgs, ... }:
|
|
{
|
|
theme.md3-evo = {
|
|
enable = true;
|
|
auto-dark = {
|
|
enable = true;
|
|
lat = 52.52;
|
|
lon = 13.40;
|
|
};
|
|
};
|
|
programs.zoxide.enable = true;
|
|
home.packages = with pkgs; [ blueman ];
|
|
systemd.user.services = {
|
|
nm-applet = {
|
|
Unit = {
|
|
Description = "Network manager applet";
|
|
After = [ "graphical-session.target" ];
|
|
};
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
Service = {
|
|
ExecStart = "${pkgs.networkmanagerapplet}/bin/nm-applet";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
blueman-applet = {
|
|
Unit = {
|
|
Description = "Bluetooth manager applet";
|
|
After = [ "graphical-session.target" ];
|
|
};
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
Service = {
|
|
ExecStart = "${pkgs.blueman}/bin/blueman-applet";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
};
|
|
}
|