about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAge
* Fix(flake/packages): Flatten nvim pkgs to satisfy `nix flake check`Soispha2023-08-26
|
* Refactor(treewide): Abbreviate path namesSoispha2023-08-26
|
* Style(treewide): Format all lua-files makes lua ➛ nix easierSoispha2023-08-26
| | | | | | | | | | The files were formatted according to the `.editorconfig` file and with the formatter from [this](1) repo, as it's the only one that fully understands all keys in the `.editorconfig` file. The formatting was chosen in this special (and honestly unconventional) way because moving code from lua to nix is now easier, as the syntax is nearly identical in some places.
* Fix(hm/conf/neovim/plugins/colorscheme): Mk todo,fix,&c comments visibleSoispha2023-08-26
|
* Feat(hm/conf/neovim/plugins/todo-comments): InitSoispha2023-08-26
|
* Fix(hm/conf/neovim/autocmds): Only show colorcolumn in insert modeSoispha2023-08-26
|
* Feat(hm/conf/neovim/autocmds): Highlight yanked textSoispha2023-08-26
|
* Fix(flake): Expose home-manager config to nvim configSoispha2023-08-26
|
* Feat(.editorconfig): Add lua configSoispha2023-08-26
|
* Fix(system/services/postgresql): Disable as it's no longer neededSoispha2023-08-26
|
* Feat(hosts/tiamat): Enable bluetoothSoispha2023-08-26
|
* Build(flake): UpdateSoispha2023-08-26
|
* Docs(treewide): Add a colon after "FIXME"sSoispha2023-08-26
|
* Docs(treewide): Add a colon after every "TODO"Soispha2023-08-26
|
* Feat(hm/conf/neovim/plugins/goto-preview): InitSoispha2023-08-26
|
* Fix(hm/conf/neovim/plugins/lsp-progress): Disable as its quite distractingSoispha2023-08-26
|
* Feat(hm/conf/neovim/plugins/lsp-progress): InitSoispha2023-08-26
|
* Fix(hm/conf/lf/commands): Actually send cd command to lf instanceSoispha2023-08-25
|
* Style(hm/conf/neovim): FormatSoispha2023-08-25
|
* Fix(hm/conf/neovim/plugins): Import new onesSoispha2023-08-25
|
* Feat(hm/conf/neovim/plugins/telescope/extensions/symbols): InitSoispha2023-08-25
|
* Feat(hm/conf/neovim/plugins/telescope/extensions/rooter): InitSoispha2023-08-25
|
* Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): InitSoispha2023-08-25
|
* Feat(hm/conf/neovim/plugins/femaco): InitSoispha2023-08-25
|
* Fix(flake/packages): Make it obvious that 'vim' is actually 'nvim'Soispha2023-08-25
|
* Fix(hm/conf/git): Add markers to diffs when on laptopSoispha2023-08-25
| | | | | | | It is very common, that I'm in a situation with bad contrast on the laptop screen (for example when in direct sunlight). To remedy the fact, that I can't see the colours in these situations, the plus and minus marks were added.
* Feat(hm/conf/git): Mark moved code in diffs and delta for merge conflictsSoispha2023-08-25
|
* Fix(hm/conf/neovim/plugins): Move raw plugins to their config dirsSoispha2023-08-25
|
* Fix(hm/conf/neovim/plugins/harpoon/mappings): Simplify mappingsSoispha2023-08-25
|
* Feat(hm/conf/lf): Add command to go to flake base dirSoispha2023-08-25
|
* Build(flake): UpdateSoispha2023-08-25
|
* 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/steam): Install wine with steamSoispha2023-08-25
|
* Fix(hm/conf/neovim/plugins): Import added pluginsSoispha2023-08-25
|
* Fix(hm/conf/neovim/plugins/telescope): InitSoispha2023-08-25
|
* Fix(hm/conf/leap): SquasSoispha2023-08-25
|
* Fix(hm/conf/neovim/options): Reduce timeout as that is used by which-keySoispha2023-08-24
|
* Fix(hm/conf/neovim/mappings): Add description to every mappingSoispha2023-08-24
|
* Feat(hm/conf/neovim/plugins/which-key): InitSoispha2023-08-24
|
* Feat(hm/conf/neovim/plugins/lspkind): InitSoispha2023-08-24
|
* Feat(hm/conf/neovim/plugins/leap): InitSoispha2023-08-24
|
* Feat(hm/conf/neovim/plugins/harpoon): InitSoispha2023-08-24
|
* Fix(hm/conf/gammastep): Go down to 3000K again as its just comfortableSoispha2023-08-24
|
* Fix(hm/conf/lf/commands): Remove rename cmd as it fails on piped stdoutSoispha2023-08-24
|
* Fix(hm/conf/neovim/plugs/lsp/ltex): Disable autocompletion while typingSoispha2023-08-22
|
* Build(flake): UpdateSoispha2023-08-22
|
* Feat(hm/conf/xdg): Set up userDirsSoispha2023-08-22
|
* Feat(flake): Provide the neovim config as a packageSoispha2023-08-22
|
* Build(flake): UpdateSoispha2023-08-21
|
* Fix(hm/conf/neovim/mappings): Use shift space to confirm suggestionsSoispha2023-08-20
|