Commit message (Collapse) | Author | ||
---|---|---|---|
2023-08-26 | Refactor(treewide): Abbreviate path names | Soispha | |
2023-08-26 | Style(treewide): Format all lua-files makes lua ➛ nix easier | Soispha | |
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-26 | Fix(hm/conf/neovim/plugins/colorscheme): Mk todo,fix,&c comments visible | Soispha | |
2023-08-26 | Feat(hm/conf/neovim/plugins/todo-comments): Init | Soispha | |
2023-08-26 | Fix(hm/conf/neovim/autocmds): Only show colorcolumn in insert mode | Soispha | |
2023-08-26 | Feat(hm/conf/neovim/autocmds): Highlight yanked text | Soispha | |
2023-08-26 | Fix(flake): Expose home-manager config to nvim config | Soispha | |
2023-08-26 | Feat(.editorconfig): Add lua config | Soispha | |
2023-08-26 | Fix(system/services/postgresql): Disable as it's no longer needed | Soispha | |
2023-08-26 | Feat(hosts/tiamat): Enable bluetooth | Soispha | |
2023-08-26 | Build(flake): Update | Soispha | |
2023-08-26 | Docs(treewide): Add a colon after "FIXME"s | Soispha | |
2023-08-26 | Docs(treewide): Add a colon after every "TODO" | Soispha | |
2023-08-26 | Feat(hm/conf/neovim/plugins/goto-preview): Init | Soispha | |
2023-08-26 | Fix(hm/conf/neovim/plugins/lsp-progress): Disable as its quite distracting | Soispha | |
2023-08-26 | Feat(hm/conf/neovim/plugins/lsp-progress): Init | Soispha | |
2023-08-25 | Fix(hm/conf/lf/commands): Actually send cd command to lf instance | Soispha | |
2023-08-25 | Style(hm/conf/neovim): Format | Soispha | |
2023-08-25 | Fix(hm/conf/neovim/plugins): Import new ones | Soispha | |
2023-08-25 | Feat(hm/conf/neovim/plugins/telescope/extensions/symbols): Init | Soispha | |
2023-08-25 | Feat(hm/conf/neovim/plugins/telescope/extensions/rooter): Init | Soispha | |
2023-08-25 | Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): Init | Soispha | |
2023-08-25 | Feat(hm/conf/neovim/plugins/femaco): Init | Soispha | |
2023-08-25 | Fix(flake/packages): Make it obvious that 'vim' is actually 'nvim' | Soispha | |
2023-08-25 | Fix(hm/conf/git): Add markers to diffs when on laptop | Soispha | |
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-25 | 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 | |
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-25 | 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-24 | Fix(hm/conf |