run nixfmt

This commit is contained in:
insects 2024-08-21 15:15:04 +02:00
parent 477bce6897
commit 9415d40508
41 changed files with 384 additions and 262 deletions

View file

@ -1,9 +1,11 @@
{ inputs
, lib
, config
, pkgs
, ...
}: {
{
inputs,
lib,
config,
pkgs,
...
}:
{
imports = [
../common
./hardware-configuration.nix
@ -63,7 +65,10 @@
lu = {
shell = pkgs.fish;
isNormalUser = true;
extraGroups = [ "wheel" "storage" ];
extraGroups = [
"wheel"
"storage"
];
};
};
@ -90,7 +95,9 @@
# enable ppd specifically for the framework
services.power-profiles-daemon.enable = true;
boot.kernelParams = lib.optionals (lib.versionOlder config.boot.kernelPackages.kernel.version "6.8") ["rtc_cmos.use_acpi_alarm=1"] ;
boot.kernelParams =
lib.optionals (lib.versionOlder config.boot.kernelPackages.kernel.version "6.8")
[ "rtc_cmos.use_acpi_alarm=1" ];
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "24.05";