Compare commits
3 Commits
0415fb5f8d
...
781464fe74
Author | SHA1 | Date | |
---|---|---|---|
781464fe74 | |||
a1aad2f381 | |||
2a4f8c3851 |
@ -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 ]; })
|
||||||
];
|
];
|
||||||
|
@ -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 = {
|
||||||
|
@ -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" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user