about summary refs log tree commit diff stats
path: root/system/services/default.nix (follow)
Commit message (Collapse)AuthorAge
* Refactor(treewide): Abbreviate path namesSoispha2023-08-26
|
* Feat(system/services/postgresql): InitSoispha2023-08-25
| | | | | | | | | | | | | | | | | | | | | | | | | | diff --git a/system/services/default.nix b/system/services/default.nix index 994a6d2..c4b9539 100644 --- a/system/services/default.nix +++ b/system/services/default.nix @@ -5,6 +5,7 @@ ./fwupd ./nix ./openssh + ./postgresql ./printing ./scanning #./serverphone diff --git a/system/services/postgresql/default.nix b/system/services/postgresql/default.nix new file mode 100644 index 0000000..165be27 --- /dev/null +++ b/system/services/postgresql/default.nix @@ -0,0 +1,5 @@ +{...}: { + services.postgresql = { + enable = true; + }; +}
* Fix(system/services/serverphone): Disable bc building the gpg keys dosn't workSoispha2023-08-19
|
* Feat(services/fwupd): AddSoispha2023-07-15
|
* Fix(system/services/serverphone): Fully addSoispha2023-06-06
|
* Refactor(system/services/printing): Split printing and scanningSoispha2023-05-20
|
* Fix(hm/wms/river): Activate wlr xdg portalSoispha2023-05-09
|
* Fix(hm/conf/swaylock): Pam permission issueSoispha2023-05-09
|
* Feat(system/services/backup): AddSoispha2023-05-09
| | | | | | | | | | | 'snap-sync-forced'[https://github.com/qubidt/snap-sync-forked] is not longer developed (as of the commit date) and thus some changes are necessary to get it working with nixos. Alternatives (although both similarly discontinued): - the original snap-sync [https://github.com/qubidt/snap-sync] -> Is effectively snap-sync-forced but without 50+ commits - 'dsnap-sync' [https://github.com/rzerres/dsnap-sync] -> Was forked long ago, now abandoned. Is rewritten in dash with lots of extra features, but sort of breaks even worse on nixos.
* Fix(system/nixpkgs): Configure at a system levelSoispha2023-05-09
|
* Fix(system/services/steam): Disable steamSoispha2023-05-09
| | | | There are still complaints about steam's license.
* Feat(hm/pkgs): Add lutrisene2023-04-07
| | | | | Lutris requires Steam as a dependency, thus allowing steam is required. There seems to be no other way to do this, I'm afraid.
* Fix(system): Move services to systemene2023-03-17