From 0f2baf46510b99c353deb3c3ecda2d76c797804c Mon Sep 17 00:00:00 2001 From: Martin Pander Date: Fri, 6 Feb 2026 23:06:49 +0100 Subject: [PATCH] Fix things --- newnix/flake.nix | 4 +++- newnix/hosts/home/nixos/configuration.nix | 7 +------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/newnix/flake.nix b/newnix/flake.nix index 096886d..038de7e 100644 --- a/newnix/flake.nix +++ b/newnix/flake.nix @@ -23,9 +23,11 @@ outputs = { self, nixpkgs, nixos-wsl, home-manager, nix-darwin, ... }@inputs: let linuxSystem = "x86_64-linux"; + linuxAarchSystem = "aarch64-linux"; darwinSystem = "aarch64-darwin"; pkgsLinux = nixpkgs.legacyPackages.${linuxSystem}; + pkgsLinuxAarch = nixpkgs.legacyPackages.${linuxAarchSystem}; pkgsDarwin = nixpkgs.legacyPackages.${darwinSystem}; in { @@ -51,7 +53,7 @@ # Home home = nixpkgs.lib.nixosSystem { - system = linuxSystem; + system = linuxAarchSystem; specialArgs = { inherit self; }; modules = [ ./hosts/home/nixos/configuration.nix diff --git a/newnix/hosts/home/nixos/configuration.nix b/newnix/hosts/home/nixos/configuration.nix index c9ad09c..47d59ed 100644 --- a/newnix/hosts/home/nixos/configuration.nix +++ b/newnix/hosts/home/nixos/configuration.nix @@ -22,12 +22,7 @@ shell = pkgs.zsh; }; - services.spice-vdagentd.enable = true; - services.qemuGuest.enable = true; - - services.xserver.videoDrivers = [ "virtio" ]; - - hardware.graphics.enable = true; + services.openssh.enable = true; system.stateVersion = "25.11"; }