style: utilise keep-sorted formatter

This commit is contained in:
wi11-holdsworth 2025-09-17 11:47:17 +10:00
parent fd65dc21ad
commit f04a4ca44d
31 changed files with 86 additions and 27 deletions

View file

@ -2,7 +2,6 @@
config,
lib,
inputs,
pkgs,
...
}:
let

View file

@ -10,8 +10,8 @@ in
{
config = lib.mkIf config.${feature}.enable {
environment.systemPackages = with pkgs; [
# keep-sorted start
heroic
# TODO: break out into separate module
lutris
mangohud
nexusmods-app
@ -20,6 +20,7 @@ in
wine64
winetricks
prismlauncher
# keep-sorted end
];
programs = {

View file

@ -17,6 +17,7 @@ in
environment = {
# https://discourse.nixos.org/t/howto-disable-most-gnome-default-applications-and-what-they-are/13505
gnome.excludePackages = with pkgs; [
# keep-sorted start
# baobab # disk usage analyzer
# cheese # photo booth
# eog # image viewer
@ -29,8 +30,6 @@ in
# file-roller # archive manager
geary # email client
seahorse # password manager
# these should be self explanatory
gnome-calculator
gnome-calendar
gnome-characters
@ -47,6 +46,7 @@ in
gnome-weather
# gnome-disk-utility
gnome-connections
# keep-sorted end
];
};
};

View file

@ -21,6 +21,7 @@ let
'');
secrets = [
# keep-sorted start
"immich"
"jellyfin"
"lidarr"
@ -29,6 +30,7 @@ let
"prowlarr"
"radarr"
"sonarr"
# keep-sorted end
];
in
{
@ -40,6 +42,7 @@ in
listenPort = lib.toInt port;
allowedHosts = "homepage-dashboard.fi33.buzz";
services = [
# keep-sorted start block=yes
{
"Media Management" = [
{
@ -217,6 +220,7 @@ in
}
];
}
# keep-sorted end
];
settings = {
title = "Mission Control";

View file

@ -14,11 +14,13 @@ in
graphics = {
enable = true;
extraPackages = with pkgs; [
# keep-sorted start
intel-media-driver
libva-vdpau-driver
intel-compute-runtime
vpl-gpu-rt
intel-ocl
# keep-sorted end
];
};
};

View file

@ -1,7 +1,6 @@
{
config,
lib,
userName,
...
}:
let

View file

@ -20,14 +20,18 @@ in
environment.systemPackages =
with pkgs.kdePackages;
[
# keep-sorted start
kontact
ktorrent
kget
kzones
# keep-sorted end
]
++ (with pkgs; [
# keep-sorted start
kile
haruna
# keep-sorted end
]);
};

View file

@ -10,6 +10,7 @@ let
port = "5008";
devicesList = [
# keep-sorted start block=yes
{
device = "desktop";
id = "SKDADYB-DQVC2EG-BZ67OJR-DO25ZUR-URP2G5U-FXRNC65-OWPEKHN-STTRRQG";
@ -26,6 +27,7 @@ let
device = "server";
id = "OP7EU3A-7A4CCMY-D4T3ND7-YWMRBNJ-KVE34FG-ZJQFSLS-WMLRWB4-FL2O7AZ";
}
# keep-sorted end
];
devices = builtins.listToAttrs (

View file

@ -11,11 +11,13 @@ in
tlp = {
enable = true;
settings = {
# keep-sorted start
CPU_BOOST_ON_AC = 1;
CPU_BOOST_ON_BAT = 0;
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
STOP_CHARGE_THRESH_BAT0 = 95;
# keep-sorted end
};
};
};

View file

@ -1,6 +1,5 @@
{
config,
inputs,
lib,
...
}: