2022-10-06 00:45:12 +03:00

20 lines
637 B
Nix

{ config, lib, pkgs, ... }: {
home-manager.users.alukard = {
home.packages = [ pkgs.google-drive-ocamlfuse ];
# systemd.user.services.google-drive-ocamlfuse = {
# Service = {
# ExecStart = "${pkgs.google-drive-ocamlfuse}/bin/google-drive-ocamlfuse";
# Type = "simple";
# };
# Unit = rec {
# After = [ "network-online.target" ];
# Wants = After;
# };
# Install.WantedBy = [ "multi-user.target" ];
# # Unit = {
# # PartOf = [ "graphical-session-pre.target" ];
# # };
# # Install.WantedBy = [ "graphical-session-pre.target" ];
# };
};
}