Some checks failed
Nix Format Check / check-format (push) Has been cancelled
26 lines
519 B
Nix
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" ];
|
|
};
|
|
};
|
|
};
|
|
}
|