nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 03bbe4c83cd63700841e0f3596f6c208183faf0e
parent e903f4902349c415c87e109deccae5cf0c9685d4
Author: Toni Brown <me@tb148.net>
Date:   Mon, 27 Apr 2026 13:07:16 +0800

reformat code

Diffstat:
Mlocal/boot/default.nix | 4+---
Mlocal/hardware/default.nix | 4+---
Mlocal/networking/default.nix | 4+---
3 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/local/boot/default.nix b/local/boot/default.nix @@ -1,7 +1,5 @@ {pkgs, ...}: { - imports = [ - ./limine/. - ]; + imports = [./limine/.]; boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.linuxPackages_latest; diff --git a/local/hardware/default.nix b/local/hardware/default.nix @@ -1,7 +1,5 @@ {...}: { - imports = [ - ./nvidia/. - ]; + imports = [./nvidia/.]; hardware.bluetooth.enable = true; } diff --git a/local/networking/default.nix b/local/networking/default.nix @@ -1,7 +1,5 @@ {...}: { - imports = [ - ./mihomo/. - ]; + imports = [./mihomo/.]; networking.hostName = "nixosion"; networking.networkmanager.enable = true;