mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-09 20:32:18 +00:00
15 lines
No EOL
594 B
Nix
15 lines
No EOL
594 B
Nix
{ pkgs, lib, ... }: {
|
|
# ChromeOS integration
|
|
|
|
home.file.".config/systemd/user/cros-garcon.service.d/override.conf" = {
|
|
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"
|
|
'';
|
|
};
|
|
|
|
# XDG settings
|
|
xdg.enable = true;
|
|
xdg.mime.enable = true;
|
|
} |