Compare commits

...

1 Commits

Author SHA1 Message Date
Martin Pander
0f2baf4651 Fix things 2026-02-06 23:06:49 +01:00
2 changed files with 4 additions and 7 deletions

View File

@@ -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

View File

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