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"; }