Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
143c2f2508
3 changed files with 9 additions and 2 deletions
|
@ -29,6 +29,8 @@ in {
|
||||||
# NOTE: Currently, helix crashes when editing markdown in certain scenarios,
|
# NOTE: Currently, helix crashes when editing markdown in certain scenarios,
|
||||||
# presumably due to an old markdown treesitter grammar
|
# presumably due to an old markdown treesitter grammar
|
||||||
# https://github.com/helix-editor/helix/issues/9011
|
# https://github.com/helix-editor/helix/issues/9011
|
||||||
|
# https://github.com/helix-editor/helix/issues/8821
|
||||||
|
# https://github.com/tree-sitter-grammars/tree-sitter-markdown/issues/114
|
||||||
|
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -196,6 +196,7 @@ in {
|
||||||
extraHosts = ''
|
extraHosts = ''
|
||||||
::1 host.docker.internal
|
::1 host.docker.internal
|
||||||
127.0.0.1 host.docker.internal
|
127.0.0.1 host.docker.internal
|
||||||
|
|
||||||
::1 host.containers.internal
|
::1 host.containers.internal
|
||||||
127.0.0.1 host.containers.internal
|
127.0.0.1 host.containers.internal
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
scale = 1.333333;
|
scale = 1.25;
|
||||||
in {
|
in {
|
||||||
networking.hostName = "foxtrot";
|
networking.hostName = "foxtrot";
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ in {
|
||||||
desktop-usage
|
desktop-usage
|
||||||
# gnome
|
# gnome
|
||||||
printing
|
printing
|
||||||
# kde-plasma
|
kde-plasma
|
||||||
podman
|
podman
|
||||||
lutris
|
lutris
|
||||||
# postgres
|
# postgres
|
||||||
|
@ -192,6 +192,10 @@ in {
|
||||||
powerOnBoot = false;
|
powerOnBoot = false;
|
||||||
};
|
};
|
||||||
powerManagement.cpuFreqGovernor = "ondemand";
|
powerManagement.cpuFreqGovernor = "ondemand";
|
||||||
|
powerManagement.resumeCommands = ''
|
||||||
|
modprobe -rv mt7921e
|
||||||
|
modprobe -v mt7921e
|
||||||
|
'';
|
||||||
|
|
||||||
services.power-profiles-daemon = {
|
services.power-profiles-daemon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue