final touches upgrade 24.11
Some checks failed
Nix Format Check / check-format (push) Has been cancelled
Some checks failed
Nix Format Check / check-format (push) Has been cancelled
This commit is contained in:
25
config/home-manager/packages/workstation/nemo.nix
Normal file
25
config/home-manager/packages/workstation/nemo.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ 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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user