refactor(treewide): format with alejandra

This commit is contained in:
ooks-io 2024-07-29 15:00:38 +12:00
parent 7fefb94400
commit 61cef505da
216 changed files with 5995 additions and 3969 deletions

View file

@ -1,46 +1,50 @@
{ lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
lib,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
];
ooknet.host = {
name = "ooksdesk";
type = "desktop";
role = "workstation";
profiles = [ "gaming" "creative" "media" "console-tools" ];
admin = {
name = "ooks";
shell = "fish";
homeManager = true;
};
networking = {
tailscale = {
enable = true;
client = true;
autoconnect = true;
};
};
hardware = {
cpu.type = "amd";
cpu.amd.pstate.enable = true;
gpu.type = "amd";
features = [ "ssd" "audio" "video" ];
monitors = [{
name = "DP-1";
primary = true;
width = 2560;
height = 1440;
refreshRate = 155;
workspace = "1";
}];
};
};
ooknet.host = {
name = "ooksdesk";
type = "desktop";
role = "workstation";
profiles = ["gaming" "creative" "media" "console-tools"];
admin = {
name = "ooks";
shell = "fish";
homeManager = true;
};
networking = {
tailscale = {
enable = true;
client = true;
autoconnect = true;
};
};
hardware = {
cpu.type = "amd";
cpu.amd.pstate.enable = true;
gpu.type = "amd";
features = ["ssd" "audio" "video"];
monitors = [
{
name = "DP-1";
primary = true;
width = 2560;
height = 1440;
refreshRate = 155;
workspace = "1";
}
];
};
};
boot = {
kernelPackages = pkgs.linuxPackages_xanmod_latest;
};
kernelPackages = pkgs.linuxPackages_xanmod_latest;
};
system.stateVersion = lib.mkDefault "23.11";
}