mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
20 lines
364 B
Nix
20 lines
364 B
Nix
{ self, ... }:
|
|
let
|
|
profilesPath = "${self}/profiles";
|
|
in
|
|
{
|
|
imports = [
|
|
"${profilesPath}/common/nixos/home-manager.nix"
|
|
];
|
|
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
nixpkgs = {
|
|
hostPlatform = "x86_64-darwin";
|
|
overlays = outputs.overlaysList;
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = 4;
|
|
}
|