Compare commits
4 Commits
c022070323
...
6050896298
Author | SHA1 | Date |
---|---|---|
Mateusz Słodkowicz | 6050896298 | |
Mateusz Słodkowicz | 80e17cc9f4 | |
Mateusz Słodkowicz | b2d466a450 | |
Mateusz Słodkowicz | a49963bb5c |
|
@ -77,7 +77,7 @@
|
||||||
dub
|
dub
|
||||||
]);
|
]);
|
||||||
|
|
||||||
editor.emacs.enable = true;
|
editor.emacs.enable = false;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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 = false;
|
services.xserver.exportConfiguration = true;
|
||||||
services.xserver.extraConfig = pkgs.lib.mkDefault ''
|
services.xserver.extraConfig = pkgs.lib.mkDefault ''
|
||||||
Section "OutputClass"
|
Section "OutputClass"
|
||||||
Identifier "amd-options"
|
Identifier "amd-options"
|
||||||
|
@ -53,6 +53,7 @@
|
||||||
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,6 +14,7 @@
|
||||||
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,6 +19,10 @@
|
||||||
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