Home manager applied to caesium
This commit is contained in:
@@ -58,6 +58,7 @@
|
||||
let
|
||||
linuxSystem = "x86_64-linux";
|
||||
darwinSystem = "aarch64-darwin";
|
||||
userConfigs = import ./variables.nix;
|
||||
mkOverlays = sys: [
|
||||
(final: prev: {
|
||||
unstable = import nixpkgsUnstable {
|
||||
@@ -81,7 +82,6 @@
|
||||
nixpkgs.overlays = mkOverlays linuxSystem;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
}
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
./caesium.nixos.nix
|
||||
];
|
||||
};
|
||||
@@ -124,8 +124,14 @@
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays linuxSystem;
|
||||
};
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = {
|
||||
system = linuxSystem;
|
||||
hostname = "caesium";
|
||||
userConfig = userConfigs."mbessette";
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
nix-flatpak.homeManagerModules.nix-flatpak
|
||||
./home.shared.nix
|
||||
./caesium.home.nix
|
||||
];
|
||||
@@ -137,7 +143,12 @@
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays darwinSystem;
|
||||
};
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = {
|
||||
system = darwinSystem;
|
||||
hostname = "hydrogen";
|
||||
userConfig = userConfigs.mbessette;
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./home.shared.nix
|
||||
./hydrogen.home.nix
|
||||
@@ -151,7 +162,12 @@
|
||||
config.allowUnfree = true;
|
||||
overlays = mkOverlays darwinSystem;
|
||||
};
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = {
|
||||
system = darwinSystem;
|
||||
hostname = "cleo-darwin";
|
||||
userConfig = userConfigs."matthew.bessette";
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./home.shared.nix
|
||||
./cleo.home.nix
|
||||
|
||||
Reference in New Issue
Block a user