mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-20 22:47:54 +08:00
23 lines
539 B
Nix
23 lines
539 B
Nix
{ self, inputs, config, ... }:
|
|
{
|
|
# Configuration common to all macOS systems
|
|
flake = {
|
|
darwinModules = {
|
|
my-home = {
|
|
home-manager.users.${config.people.myself} = {
|
|
imports = [
|
|
self.homeModules.common-darwin
|
|
];
|
|
};
|
|
};
|
|
|
|
default.imports = [
|
|
self.darwinModules_.home-manager
|
|
self.darwinModules.my-home
|
|
self.nixosModules.common
|
|
inputs.ragenix.darwinModules.default
|
|
inputs.github-nix-ci.darwinModules.default
|
|
];
|
|
};
|
|
};
|
|
}
|