Compare commits

...

2 Commits

Author SHA1 Message Date
cc7c6ac0ac
Disable virtualization 2021-01-18 10:57:04 +01:00
912b9071a5
Remove redundant argument from doom systemd units 2021-01-18 10:56:05 +01:00
2 changed files with 3 additions and 3 deletions

View File

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

View File

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