This commit is contained in:
Your Name
2025-07-18 12:33:31 +08:00
parent cab865dff3
commit f21234790e
9 changed files with 307 additions and 58 deletions
+6 -10
View File
@@ -1,5 +1,5 @@
{
description = "Your new nix config";
description = "NixOS configuration for OrbStack virtual machine";
inputs = {
# Nixpkgs
@@ -24,10 +24,6 @@
# Supported systems for your flake packages, shell, etc.
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
@@ -50,10 +46,10 @@
homeManagerModules = import ./modules/home-manager;
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
# Available through 'nixos-rebuild --flake .#nixos'
nixosConfigurations = {
# FIXME replace with your hostname
your-hostname = nixpkgs.lib.nixosSystem {
nixos = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
@@ -66,8 +62,8 @@
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = {
# FIXME replace with your username@hostname
"your-username@your-hostname" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
"wongdingfeng@nixos" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.aarch64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = {inherit inputs outputs;};
modules = [
# > Our main home-manager configuration file <