some power saving stuff add some pkgs

This commit is contained in:
Lukas Heiligenbrunner 2023-10-21 18:26:00 +02:00
parent 18f3bccd73
commit 0f4eb5ce24
2 changed files with 24 additions and 1 deletions

View File

@ -25,6 +25,19 @@
}; };
}; };
#sound
dconf.settings = {
"org/gnome/settings-daemon/plugins/media-keys" = {
volume-step = 3;
};
"org/gnome/settings-daemon/plugins/power" = {
sleep-inactive-battery-type = "nothing";
sleep-inactive-ac-type = "nothing";
};
};
# nautilus settings # nautilus settings
dconf.settings = { dconf.settings = {
"org/gnome/nautilus/preferences" = { "org/gnome/nautilus/preferences" = {
@ -60,4 +73,11 @@
tap-to-click = true; tap-to-click = true;
}; };
}; };
# texteditor
dconf.settings = {
"org/gnome/TextEditor" = {
show-grid = true;
};
};
} }

View File

@ -27,6 +27,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# system utilities # system utilities
wget wget
scrcpy
# web # web
firefox firefox
@ -37,7 +38,8 @@
git git
prusa-slicer prusa-slicer
rustup rustup
git jetbrains.idea-ultimate
kicad
# multimedia # multimedia
vlc vlc
@ -49,5 +51,6 @@
# gui utilities # gui utilities
pdfarranger pdfarranger
diebahn diebahn
appflowy
]; ];
} }