Compare commits

..

No commits in common. "cc7c6ac0acc933f319e5758f258180c7337c3e48" and "d8431fcd57a0b97378429b1d4603cbf49eff35d7" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
# Enable virtualisation # Enable virtualisation
virtualisation.libvirtd = { virtualisation.libvirtd = {
enable = false; enable = true;
onBoot = "ignore"; onBoot = "ignore";
onShutdown = "shutdown"; onShutdown = "shutdown";
qemuPackage = pkgs.qemu_kvm; qemuPackage = pkgs.qemu_kvm;

View File

@ -8,7 +8,7 @@
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];
path = with pkgs; [ bash emacsPgtkGcc git coreutils ]; path = with pkgs; [ bash emacsPgtkGcc git coreutils ];
script = '' script = ''
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom upgrade" ${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y upgrade"
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom sync" ${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom sync"
''; '';
serviceConfig = { Type = "oneshot"; }; serviceConfig = { Type = "oneshot"; };
@ -29,7 +29,7 @@
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];
path = with pkgs; [ bash emacsPgtkGcc git coreutils ]; path = with pkgs; [ bash emacsPgtkGcc git coreutils ];
script = '' script = ''
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom purge" ${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y purge"
''; '';
serviceConfig = { Type = "oneshot"; }; serviceConfig = { Type = "oneshot"; };
}; };