let systems be systems
This commit is contained in:
parent
cd6d44121d
commit
70b67e1c36
1 changed files with 14 additions and 10 deletions
24
flake.nix
24
flake.nix
|
@ -122,18 +122,22 @@
|
||||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
# TODO: non-system-specific home configurations?
|
# TODO: non-system-specific home configurations?
|
||||||
"base-x86_64-linux" = home-manager.lib.homeManagerConfiguration rec {
|
"base-x86_64-linux" = let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs-unstable.legacyPackages.${system};
|
in
|
||||||
extraSpecialArgs = {inherit inputs outputs system colors font;};
|
home-manager.lib.homeManagerConfiguration {
|
||||||
modules = with outputs.homeManagerModules; [linux];
|
pkgs = nixpkgs-unstable.legacyPackages.${system};
|
||||||
};
|
extraSpecialArgs = {inherit inputs outputs system colors font;};
|
||||||
"base-aarch64-darwin" = home-manager.lib.homeManagerConfiguration rec {
|
modules = with outputs.homeManagerModules; [linux];
|
||||||
|
};
|
||||||
|
"base-aarch64-darwin" = let
|
||||||
system = "aarch64-darwin";
|
system = "aarch64-darwin";
|
||||||
pkgs = nixpkgs-unstable.legacyPackages.${system};
|
in
|
||||||
extraSpecialArgs = {inherit inputs outputs system colors font;};
|
home-manager.lib.homeManagerConfiguration {
|
||||||
modules = with outputs.homeManagerModules; [macos];
|
pkgs = nixpkgs-unstable.legacyPackages.${system};
|
||||||
};
|
extraSpecialArgs = {inherit inputs outputs system colors font;};
|
||||||
|
modules = with outputs.homeManagerModules; [macos];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: nix-on-droid for phone terminal usage?
|
# TODO: nix-on-droid for phone terminal usage?
|
||||||
|
|
Loading…
Reference in a new issue