small tweaks

This commit is contained in:
Noah Masur 2025-03-04 10:21:57 -05:00
parent 05e3996eb3
commit fc8f460559
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View File

@ -343,6 +343,10 @@
nixosModules = x86_64-linux-hosts // aarch64-linux-hosts; nixosModules = x86_64-linux-hosts // aarch64-linux-hosts;
darwinModules = aarch64-darwin-hosts; darwinModules = aarch64-darwin-hosts;
inherit buildDarwin pkgsBySystem;
# buildDarwin = buildDarwin;
# pkgsBySystem = pkgsBySystem;
# Contains my full system builds, including home-manager # Contains my full system builds, including home-manager
# nixos-rebuild switch --flake .#tempest # nixos-rebuild switch --flake .#tempest
nixosConfigurations = nixosConfigurations =

View File

@ -78,7 +78,7 @@ rec {
# Sets root ext4 filesystem instead of declaring it manually # Sets root ext4 filesystem instead of declaring it manually
disko = { disko = {
enableConfig = true; enableConfig = true;
devices = (import ../../disks/root.nix { disk = "/dev/nvme0n1"; }); devices = (import ../../../disks/root.nix { disk = "/dev/nvme0n1"; });
}; };
# Allows private remote access over the internet # Allows private remote access over the internet