From 50936812b83bff4419ab167af7e2403cdc04d67a Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Wed, 23 Oct 2024 02:16:40 -0700 Subject: Finish cleanup for new flake syntax --- hosts/arrakis/default.nix | 13 ++++++++++++- hosts/arrakis/hardware-configuration.nix | 11 ----------- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'hosts/arrakis') diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index 7279a9f..0098090 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: { +{ config, inputs, outputs, pkgs, ... }: { boot = { initrd.kernelModules = [ "zfs" ]; kernel.sysctl = { @@ -209,6 +209,17 @@ }; }; + nixpkgs = { + config.allowUnfree = true; + hostPlatform = "x86_64-linux"; + overlays = [ + inputs.nvidia-patch.overlays.default + outputs.overlays.additions + outputs.overlays.modifications + outputs.overlays.stable-packages + ]; + }; + services.openssh.settings.X11Forwarding = true; services.xserver.videoDrivers = [ "nvidia" ]; diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index 6dc6542..5a4c958 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -88,17 +88,6 @@ { device = "/dev/disk/by-label/swap2"; } ]; - nixpkgs = { - config.allowUnfree = true; - hostPlatform = "x86_64-linux"; - overlays = [ - inputs.nvidia-patch.overlays.default - outputs.overlays.additions - outputs.overlays.modifications - outputs.overlays.stable-packages - ]; - }; - hardware = { bluetooth.enable = true; graphics = { -- cgit v1.2.3