Compare commits

..

3 Commits

3 changed files with 20 additions and 1 deletions

View File

@ -62,6 +62,9 @@
aria2 # Fast download manager aria2 # Fast download manager
starsector # Nice little game I got coaxed into trying starsector # Nice little game I got coaxed into trying
inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format
hugo # fast static site generator
protonup-qt # Proton ge manager
ungoogled-chromium # For sites that don't work with firefox based browsers
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font (nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
(retroarch.override { cores = with libretro; [ snes9x ]; }) (retroarch.override { cores = with libretro; [ snes9x ]; })
]; ];

View File

@ -52,7 +52,23 @@
extraConfigLuaPost = '' extraConfigLuaPost = ''
vim.notify = require("mini.notify").make_notify() vim.notify = require("mini.notify").make_notify()
''; '';
extraPackages = with pkgs; [ stylua isort black nixfmt ];
plugins = { plugins = {
conform-nvim = {
enable = true;
formattersByFt = {
lua = [ "stylua" ];
python = [ "isort" "black" ];
nix = [ "nixfmt" ];
};
};
lint = {
enable = true;
lintersByFt = {
python = [ "mypy" ];
ruby = [ "ruby" ];
};
};
harpoon = { harpoon = {
enable = true; enable = true;
keymaps = { keymaps = {

View File

@ -244,7 +244,7 @@
serviceConfig = { serviceConfig = {
Type = "oneshot"; Type = "oneshot";
ExecStart = toString (pkgs.writeShellScript "ryzenadj-setup" '' ExecStart = toString (pkgs.writeShellScript "ryzenadj-setup" ''
${pkgs.ryzenadj}/bin/ryzenadj --stapm-limit 35000 --fast-limit 35000 --slow-limit 35000 --slow-time 60 --stapm-time 1000 --tctl-temp 80 --vrmmax-current 65000 ${pkgs.ryzenadj}/bin/ryzenadj --stapm-limit 35000 --fast-limit 35000 --slow-limit 35000 --slow-time 60 --stapm-time 1000 --tctl-temp 90 --vrmmax-current 65000
''); '');
}; };
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];