diff --git a/dots/.config/nvim/skeletons/shell.nix b/dots/.config/nvim/skeletons/shell.nix index b84b531..ff3704b 100644 --- a/dots/.config/nvim/skeletons/shell.nix +++ b/dots/.config/nvim/skeletons/shell.nix @@ -1,6 +1,4 @@ { pkgs ? import { }, }: -pkgs.mkShell { - nativeBuildInputs = with pkgs.buildPackages; [ ]; -} +pkgs.mkShell { nativeBuildInputs = with pkgs.buildPackages; [ ]; } diff --git a/home/hosts/astyanax/packages.nix b/home/hosts/astyanax/packages.nix index 48acd78..c0a3b3f 100644 --- a/home/hosts/astyanax/packages.nix +++ b/home/hosts/astyanax/packages.nix @@ -22,7 +22,6 @@ with pkgs; nixfmt-rfc-style nmap nodejs_24 - nodePackages.ts-node nvimpager ormolu pandoc diff --git a/hosts/andromache/hard.nix b/hosts/andromache/hard.nix index 8a19891..2171ce2 100644 --- a/hosts/andromache/hard.nix +++ b/hosts/andromache/hard.nix @@ -1,14 +1,29 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ + config, + lib, + pkgs, + modulesPath, + ... +}: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "vmd" "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "uas" "sd_mod" ]; + boot.initrd.availableKernelModules = [ + "vmd" + "xhci_pci" + "ahci" + "nvme" + "usbhid" + "usb_storage" + "uas" + "sd_mod" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];