(laptop) Gen 16: broke up laptop default.nix into modules, added git config

This commit is contained in:
pagedmov
2024-10-14 02:39:01 -04:00
parent f12238962e
commit 395fa72cbf
9 changed files with 126 additions and 97 deletions

View File

@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
environment = {
variables = {
XCURSOR_SIZE = "24";
PATH = "${pkgs.clang-tools}/bin:$PATH";
};
shells = with pkgs; [
zsh
bash
];
systemPackages = with pkgs; [
acpi
brightnessctl
cpupower-gui
powertop
];
};
}