2023-06-28-12-47-21
This commit is contained in:
@ -17,7 +17,10 @@
|
||||
|
||||
desktopManager.pantheon = {
|
||||
enable = true;
|
||||
extraWingpanelIndicators = with pkgs; [ wingpanel-indicator-ayatana ];
|
||||
extraWingpanelIndicators = with pkgs; [
|
||||
monitor
|
||||
wingpanel-indicator-ayatana
|
||||
];
|
||||
};
|
||||
|
||||
layout = "us";
|
||||
@ -28,8 +31,40 @@
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services = {
|
||||
monitor = {
|
||||
description = "indicator-monitor";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
partOf = [ "graphical-session.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.monitor}/bin/com.github.stsdc.monitor";
|
||||
};
|
||||
};
|
||||
|
||||
indicatorapp = {
|
||||
description = "indicator-application-gtk3";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
partOf = [ "graphical-session.target" ];
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.indicator-application-gtk3}/libexec/indicator-application/indicator-application-service";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# App indicator
|
||||
environment.pathsToLink = [ "/libexec" ];
|
||||
environment.systemPackages = with pkgs; [ indicator-application-gtk3 ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
blackbox-terminal
|
||||
cinnamon.nemo-with-extensions
|
||||
gnome-online-accounts
|
||||
gnome.gnome-control-center
|
||||
gnome.gnome-system-monitor
|
||||
indicator-application-gtk3
|
||||
monitor
|
||||
ulauncher
|
||||
];
|
||||
|
||||
environment.pantheon.excludePackages = with pkgs.pantheon; [
|
||||
elementary-code
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user