aboutsummaryrefslogtreecommitdiffstats
path: root/modules/system/services/default.nix (unfollow)
Commit message (Collapse)Author
2024-10-18refactor(modules): Move all system modules to `by-name`Benedikt Peetz
From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules.
2024-10-11feat(services/diffSystem): InitBenedikt Peetz
2024-05-20refactor(sys): Modularize and move to `modules/system` or `pkgs`Benedikt Peetz
2023-09-17feat(sys/srvs/adb): InitSoispha
2023-08-28Feat(sys/svcs/getty): InitSoispha
2023-08-26Refactor(treewide): Abbreviate path namesSoispha
2023-08-25Feat(system/services/postgresql): InitSoispha
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; + }; +}
2023-08-19Fix(system/services/serverphone): Disable bc building the gpg keys dosn't workSoispha
2023-07-15Feat(services/fwupd): AddSoispha
2023-06-06Fix(system/services/serverphone): Fully addSoispha
2023-05-20Refactor(system/services/printing): Split printing and scanningSoispha
2023-05-09Fix(hm/wms/river): Activate wlr xdg portalSoispha
2023-05-09Fix(hm/conf/swaylock): Pam permission issueSoispha
2023-05-09Feat(system/services/backup): AddSoispha
'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.
2023-05-09Fix(system/nixpkgs): Configure at a system levelSoispha
2023-05-09Fix(system/services/steam): Disable steamSoispha
There are still complaints about steam's license.
2023-04-07Feat(hm/pkgs): Add lutrisene
Lutris requires Steam as a dependency, thus allowing steam is required. There seems to be no other way to do this, I'm afraid.
2023-03-17Fix(system): Move services to systemene
2023-02-25Feat(system): Add openssh accessene
2023-02-21Fix(home-manager): Add dconf serviceene
2023-02-19Fix: Import the new configsene
2023-02-17Feat(services): Use default.nix filesene
2023-02-15Feat(home-manager): Add zshene
2023-02-05Feat: Switch to Default.nix filesene
This make the imported path somewhat shorter.
2023-02-03Feat: Split the config apartene