aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.nix5
-rw-r--r--hosts/arrakis/default.nix4
2 files changed, 7 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 3209e2b..4bd246c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -60,6 +60,11 @@
arrakis = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
+ {
+ environment.systemPackages = [
+ ghostty.packages.x86_64-linux.default
+ ];
+ }
disko.nixosModules.disko
./hosts/arrakis
home-manager.nixosModules.home-manager {
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