Compare commits
No commits in common. "60508962981fd447df80e9e52664914135dc3683" and "c022070323fc88c088fed47065e09c5448a35eba" have entirely different histories.
6050896298
...
c022070323
|
@ -77,7 +77,7 @@
|
||||||
dub
|
dub
|
||||||
]);
|
]);
|
||||||
|
|
||||||
editor.emacs.enable = false;
|
editor.emacs.enable = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
xdg.portal.wlr.enable = true;
|
xdg.portal.wlr.enable = true;
|
||||||
xdg.portal.xdgOpenUsePortal = true;
|
xdg.portal.xdgOpenUsePortal = true;
|
||||||
|
|
||||||
services.xserver.exportConfiguration = true;
|
services.xserver.exportConfiguration = false;
|
||||||
services.xserver.extraConfig = pkgs.lib.mkDefault ''
|
services.xserver.extraConfig = pkgs.lib.mkDefault ''
|
||||||
Section "OutputClass"
|
Section "OutputClass"
|
||||||
Identifier "amd-options"
|
Identifier "amd-options"
|
||||||
|
@ -53,7 +53,6 @@
|
||||||
Option "SWCursor" "True"
|
Option "SWCursor" "True"
|
||||||
Option "VariableRefresh" "true"
|
Option "VariableRefresh" "true"
|
||||||
Option "AsyncFlipSecondaries" "true"
|
Option "AsyncFlipSecondaries" "true"
|
||||||
Option "DRI3" "1"
|
|
||||||
MatchDriver "amdgpu"
|
MatchDriver "amdgpu"
|
||||||
EndSection
|
EndSection
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,7 +14,6 @@
|
||||||
where = "/var/lib/mnt_acme";
|
where = "/var/lib/mnt_acme";
|
||||||
type = "fuse.sshfs";
|
type = "fuse.sshfs";
|
||||||
options = "reconnect,gid=${builtins.toString config.ids.gids.nginx},_netdev,rw,nosuid,allow_other,default_permissions,follow_symlinks,idmap=user,compression=yes,identityfile=/materus/root/ssh_host_ed25519_key";
|
options = "reconnect,gid=${builtins.toString config.ids.gids.nginx},_netdev,rw,nosuid,allow_other,default_permissions,follow_symlinks,idmap=user,compression=yes,identityfile=/materus/root/ssh_host_ed25519_key";
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,10 +19,6 @@
|
||||||
systemd.services.nginx = {
|
systemd.services.nginx = {
|
||||||
requires = [ "var-lib-mnt_acme.mount" ];
|
requires = [ "var-lib-mnt_acme.mount" ];
|
||||||
after = [ "var-lib-mnt_acme.mount" ];
|
after = [ "var-lib-mnt_acme.mount" ];
|
||||||
serviceConfig = {
|
|
||||||
restart = "always";
|
|
||||||
restartSec = 60;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue