laptop config has now integrated the module refactoring. Also updated flake.lock and fixed missing git aliases from previous commit

This commit is contained in:
pagedmov
2024-11-02 06:35:01 -04:00
parent 44e1498e97
commit eae58c0f13
6 changed files with 151 additions and 40 deletions

View File

@@ -1,7 +1,10 @@
{pkgs, config, ...}: {
system.stateVersion = "24.05";
nixpkgs.config.allowUnfree = true;
imports = [ ./hardware.nix ];
imports = [
./hardware.nix
./home.nix
];
powerProfiles.enable = true;
boot = {
@@ -14,21 +17,31 @@
++ [pkgs.cpupower-gui];
};
environment = {
variables = {
PATH = "${pkgs.clang-tools}/bin:$PATH";
};
shells = with pkgs; [
zsh
bash
];
systemPackages = with pkgs; [
acpi
brightnessctl
cpupower-gui
powertop
];
networkModule.enable = true;
nixSettings.enable = true;
bootLoader.enable = true;
issue.enable = true;
sddmConfig.enable = true;
stylixConfig.enable = true;
sysPkgs.enable = true;
sysProgs.enable = true;
sysServices.enable = true;
environment = {
variables = {
PATH = "${pkgs.clang-tools}/bin:$PATH";
};
shells = with pkgs; [
zsh
bash
];
systemPackages = with pkgs; [
acpi
brightnessctl
cpupower-gui
powertop
];
};
}