Menno van Leeuwen a4871ba423
Some checks failed
Nix Format Check / check-format (push) Has been cancelled
final touches upgrade 24.11
2024-12-09 16:02:05 +01:00

26 lines
519 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
nemo
cinnamon-common
];
# Configure systemd user service for Nemo desktop
systemd.user.services = {
nemo-desktop = {
Unit = {
Description = "Nemo Desktop";
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.nemo}/bin/nemo-desktop";
RestartSec = 3;
Restart = "always";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
};
}