2024-12-20 01:08:24 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
let path = "config/systemd/user/cros-garcon.service.d/override.conf";
|
|
|
|
in {
|
|
|
|
xdg.enable = true;
|
|
|
|
xdg.mime.enable = true;
|
2023-07-28 22:15:33 +00:00
|
|
|
|
2024-12-20 01:08:24 +00:00
|
|
|
xdg.configFile.${path} = {
|
2023-07-28 22:15:33 +00:00
|
|
|
text = ''
|
|
|
|
[Service]
|
|
|
|
Environment="PATH=%h/.nix-profile/bin:/usr/local/sbin:/usr/local/bin:/usr/local/games:/usr/sbin:/usr/bin:/usr/games:/sbin:/bin"
|
|
|
|
Environment="XDG_DATA_DIRS=/nix/var/nix/profiles/default/share:%h/.nix-profile/share:%h/.local/share:/usr/local/share:/usr/share:/var/lib/snapd/desktop:%h/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share"
|
|
|
|
'';
|
|
|
|
};
|
2024-12-20 01:08:24 +00:00
|
|
|
home.packages = with pkgs; [ nixgl.nixGLMesa ];
|
2023-07-28 22:15:33 +00:00
|
|
|
}
|