Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Fix(hm/conf/git): Add markers to diffs when on laptop | Soispha | 2023-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 conflicts | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/neovim/plugins): Move raw plugins to their config dirs | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/harpoon/mappings): Simplify mappings | Soispha | 2023-08-25 | |
| | ||||
* | Feat(hm/conf/lf): Add command to go to flake base dir | Soispha | 2023-08-25 | |
| | ||||
* | Build(flake): Update | Soispha | 2023-08-25 | |
| | ||||
* | Feat(system/services/postgresql): Init | Soispha | 2023-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 steam | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/neovim/plugins): Import added plugins | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/telescope): Init | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/leap): Squas | Soispha | 2023-08-25 | |
| | ||||
* | Fix(hm/conf/neovim/options): Reduce timeout as that is used by which-key | Soispha | 2023-08-24 | |
| | ||||
* | Fix(hm/conf/neovim/mappings): Add description to every mapping | Soispha | 2023-08-24 | |
| | ||||
* | Feat(hm/conf/neovim/plugins/which-key): Init | Soispha | 2023-08-24 | |
| | ||||
* | Feat(hm/conf/neovim/plugins/lspkind): Init | Soispha | 2023-08-24 | |
| | ||||
* | Feat(hm/conf/neovim/plugins/leap): Init | Soispha | 2023-08-24 | |
| | ||||
* | Feat(hm/conf/neovim/plugins/harpoon): Init | Soispha | 2023-08-24 | |
| | ||||
* | Fix(hm/conf/gammastep): Go down to 3000K again as its just comfortable | Soispha | 2023-08-24 | |
| | ||||
* | Fix(hm/conf/lf/commands): Remove rename cmd as it fails on piped stdout | Soispha | 2023-08-24 | |
| | ||||
* | Fix(hm/conf/neovim/plugs/lsp/ltex): Disable autocompletion while typing | Soispha | 2023-08-22 | |
| | ||||
* | Build(flake): Update | Soispha | 2023-08-22 | |
| | ||||
* | Feat(hm/conf/xdg): Set up userDirs | Soispha | 2023-08-22 | |
| | ||||
* | Feat(flake): Provide the neovim config as a package | Soispha | 2023-08-22 | |
| | ||||
* | Build(flake): Update | Soispha | 2023-08-21 | |
| | ||||
* | Fix(hm/conf/neovim/mappings): Use shift space to confirm suggestions | Soispha | 2023-08-20 | |
| | ||||
* | Fix(hm/conf/lf/commands): Avoid shell wrapping for c rename command | Soispha | 2023-08-20 | |
| | ||||
* | Feat(hm/conf/lf): Replace rename script by rename c binary | Soispha | 2023-08-20 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/luasnip): Correct local value in snippet | Soispha | 2023-08-20 | |
| | ||||
* | Feat(hm/conf/neovim/plugins/lsp/ccls): Init | Soispha | 2023-08-20 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/vimtex): Add comment about treesitter support | Soispha | 2023-08-19 | |
| | ||||
* | Refactor(hm/conf/neovim/plugins/luasnip/snippets): Remove unnused ones | Soispha | 2023-08-19 | |
| | ||||
* | Feat(hm/conf/neovim): Use non-treesitter theme for latex files | Soispha | 2023-08-19 | |
| | | | | | Vim tex doesnn't really not work with treesitter, and nightfox doesn't really work without treesitter thus a new colorscheme was chooses. | |||
* | Fix(hm/impermanence): Save the date dir of iamb | Soispha | 2023-08-19 | |
| | ||||
* | Feat(hm/conf/lf/keybindings): Add mapping to load Session.vim file | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/lf): Implement rename cmd | Soispha | 2023-08-19 | |
| | | | | | | | | | | | The default lf rename command starts behind the extension like this: ``` filename.extension ^ | startpoint ``` This new cmd avoids this. | |||
* | Fix(hm/conf/lf): Split file creation and edit of the made file cmds | Soispha | 2023-08-19 | |
| | | | | | I mostly create files from vim, thus editing them in the terminal with created them is useless. | |||
* | Fix(hm/conf/lf/commands): Correctly quote the id string in 'fzf_jump' cmd | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim): Put the config file heading at the top | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim): Add linter and formatters to the wrapped neovim | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/lf/commands): Remove non-wrapped neovim dependency | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/gammastep): Adjust laptop temp to redshift night default | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim): Change mapping for cmp acceptation to 'HH' | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/nixneovim): Remove as it's replaced by nixvim | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/lsp): Remove duplicated setup of capabilities | Soispha | 2023-08-19 | |
| | | | | | NixVim automatically sets up the capabilities if the nvim_cmp plugin is activated. | |||
* | Fix(hm/conf/neovim/plugins/lualine): Correctly qoute string | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/lualine): Use anynomys functions | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/lualine): Enable | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/plugins/lf): Add fg and bg highlight colors | Soispha | 2023-08-19 | |
| | ||||
* | Fix(hm/conf/neovim/autocmds): Add anchor to space replacement | Soispha | 2023-08-19 | |
| | | | | | | | | | | | | | | | | | | | | Without this the following code would be completely minimized: ``` {...}:{ services.lua_language={ enable=true; }; } ``` → ``` {...}:{ services.lua_language={ enable=true; }; } ```. Now it should only strip the whitespace at the end of the lines. | |||
* | Fix(hm/conf/neovim): Remove duplicate mapping, which mapped n to n | Soispha | 2023-08-19 | |
| | | | | | This would otherwise unmap the mapping of n to "g<up>", thus making upwards movement impossible. |