about summary refs log tree commit diff stats
path: root/flake (unfollow)
Commit message (Collapse)Author
2023-08-28Fix(hm/conf/nvim/plugins/neorg): Add entry to modules, to generate themSoispha
2023-08-27Perf(flake/packages/nvim): Use list merge feature of the merge functionSoispha
2023-08-27Feat(hm/conf/nvim/plugins/neorg): InitSoispha
2023-08-27Fix(hm/conf/nvim/plugins/femaco): Actually bind key to functionSoispha
2023-08-27Fix(hm/conf/nvim/plugins/todo-comments): Add default highlightingSoispha
2023-08-27Feat(hm/conf/nvim/plugins/comment-nvim): InitSoispha
2023-08-27Fix(hm/conf/nvim/plugins/colorscheme): Switch back to carbonfoxSoispha
2023-08-27Feat(hm/conf/nvim/plugins/luasnip/snippets/all): Add snips for todo-commentsSoispha
2023-08-27Fix(hm/conf/nvim/plugins/luasnip/snippets/all): Fix pairs in certain ftsSoispha
2023-08-27Feat(hm/conf/nvim/plugins/luasnip/all): Add snippets for todo commentsSoispha
2023-08-27Feat(hm/conf/alacritty): Set nightfox/carbonfox as colorschemeSoispha
2023-08-26Fix(flake/packages): Flatten nvim pkgs to satisfy `nix flake check`Soispha
2023-08-26Refactor(treewide): Abbreviate path namesSoispha
2023-08-26Style(treewide): Format all lua-files makes lua ➛ nix easierSoispha
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.
2023-08-26Fix(hm/conf/neovim/plugins/colorscheme): Mk todo,fix,&c comments visibleSoispha
2023-08-26Feat(hm/conf/neovim/plugins/todo-comments): InitSoispha
2023-08-26Fix(hm/conf/neovim/autocmds): Only show colorcolumn in insert modeSoispha
2023-08-26Feat(hm/conf/neovim/autocmds): Highlight yanked textSoispha
2023-08-26Fix(flake): Expose home-manager config to nvim configSoispha
2023-08-26Feat(.editorconfig): Add lua configSoispha
2023-08-26Fix(system/services/postgresql): Disable as it's no longer neededSoispha
2023-08-26Feat(hosts/tiamat): Enable bluetoothSoispha
2023-08-26Build(flake): UpdateSoispha
2023-08-26Docs(treewide): Add a colon after "FIXME"sSoispha
2023-08-26Docs(treewide): Add a colon after every "TODO"Soispha
2023-08-26Feat(hm/conf/neovim/plugins/goto-preview): InitSoispha
2023-08-26Fix(hm/conf/neovim/plugins/lsp-progress): Disable as its quite distractingSoispha
2023-08-26Feat(hm/conf/neovim/plugins/lsp-progress): InitSoispha
2023-08-25Fix(hm/conf/lf/commands): Actually send cd command to lf instanceSoispha
2023-08-25Style(hm/conf/neovim): FormatSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Import new onesSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/symbols): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/rooter): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/femaco): InitSoispha
2023-08-25Fix(flake/packages): Make it obvious that 'vim' is actually 'nvim'Soispha
2023-08-25Fix(hm/conf/git): Add markers to diffs when on laptopSoispha
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.
2023-08-25Feat(hm/conf/git): Mark moved code in diffs and delta for merge conflictsSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Move raw plugins to their config dirsSoispha
2023-08-25Fix(hm/conf/neovim/plugins/harpoon/mappings): Simplify mappingsSoispha
2023-08-25Feat(hm/conf/lf): Add command to go to flake base dirSoispha
2023-08-25Build(flake): UpdateSoispha
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-25Fix(system/services/steam): Install wine with steamSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Import added pluginsSoispha
2023-08-25Fix(hm/conf/neovim/plugins/telescope): InitSoispha
2023-08-25Fix(hm/conf/leap): SquasSoispha