diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-27 01:11:05 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-27 01:11:05 -0800 |
commit | f0e190ee11456de996c86e2464e826fbb31c11db (patch) | |
tree | f3d7b01aa583d8604a25de3b17472ed0ce116895 /hosts | |
parent | 3b037e3c981c483c05c67c2d55ba52d4645655c2 (diff) | |
download | nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar.gz nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar.bz2 nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar.lz nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar.xz nix-f0e190ee11456de996c86e2464e826fbb31c11db.tar.zst nix-f0e190ee11456de996c86e2464e826fbb31c11db.zip |
Fix syntax
Diffstat (limited to '')
-rw-r--r-- | hosts/arrakis/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index 64049cc..e4957d6 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -1,4 +1,4 @@ -{ config, ghostty, inputs, outputs, pkgs, ... }: { +{ config, inputs, outputs, pkgs, ... }: { boot = { initrd.kernelModules = [ "zfs" ]; kernel.sysctl = { @@ -106,7 +106,7 @@ wpa_supplicant xonotic-sdl xpilot-ng - ] ++ ghostty.packages.x86_64-linux.default; + ]; imports = [ ./disks.nix |