Hydrogen got the changes applied
This commit is contained in:
@@ -58,7 +58,6 @@
|
||||
let
|
||||
linuxSystem = "x86_64-linux";
|
||||
darwinSystem = "aarch64-darwin";
|
||||
userConfigs = import ./variables.nix;
|
||||
mkOverlays = sys: [
|
||||
(final: prev: {
|
||||
unstable = import nixpkgsUnstable {
|
||||
@@ -118,16 +117,18 @@
|
||||
# -------------------------------------------------------------
|
||||
# Homemanager configuration
|
||||
# -------------------------------------------------------------
|
||||
homeConfigurations."mbessette@caesium" = home-manager.lib.homeManagerConfiguration {
|
||||
homeConfigurations."mbessette@caesium" = let
|
||||
pkgs = import nixpkgs {
|
||||
system = linuxSystem;
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays linuxSystem;
|
||||
};
|
||||
in home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {
|
||||
system = linuxSystem;
|
||||
hostname = "caesium";
|
||||
userConfig = userConfigs."mbessette";
|
||||
userConfig = (import ./variables.nix { inherit pkgs; })."mbessette";
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
@@ -137,16 +138,18 @@
|
||||
];
|
||||
};
|
||||
|
||||
homeConfigurations."mbessette@hydrogen" = home-manager-darwin.lib.homeManagerConfiguration {
|
||||
homeConfigurations."mbessette@hydrogen" = let
|
||||
pkgs = import nixpkgsUnstable {
|
||||
system = darwinSystem;
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays darwinSystem;
|
||||
};
|
||||
in home-manager-darwin.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {
|
||||
system = darwinSystem;
|
||||
hostname = "hydrogen";
|
||||
userConfig = userConfigs.mbessette;
|
||||
userConfig = (import ./variables.nix { inherit pkgs; }).mbessette;
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
@@ -156,16 +159,18 @@
|
||||
];
|
||||
};
|
||||
|
||||
homeConfigurations."matthew.bessette@cleo-darwin" = home-manager-darwin.lib.homeManagerConfiguration {
|
||||
homeConfigurations."matthew.bessette@cleo-darwin" = let
|
||||
pkgs = import nixpkgsUnstable {
|
||||
system = darwinSystem;
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays darwinSystem;
|
||||
};
|
||||
in home-manager-darwin.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = {
|
||||
system = darwinSystem;
|
||||
hostname = "cleo-darwin";
|
||||
userConfig = userConfigs."matthew.bessette";
|
||||
userConfig = (import ./variables.nix { inherit pkgs; })."matthew.bessette";
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
|
||||
Reference in New Issue
Block a user