dotfiles init

This commit is contained in:
Den Afanasyev 2025-06-15 07:14:24 +03:00
commit 5edf0f15fc
5 changed files with 381 additions and 0 deletions

59
flake.nix Normal file
View file

@ -0,0 +1,59 @@
{
description = "duumxh flake config";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew";
nix-darwin = {
url = "github:nix-darwin/nix-darwin/master";
inputs.nixpkgs.follows = "nixpkgs";
};
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-bundle = {
url = "github:homebrew/homebrew-bundle";
flake = false;
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, nix-darwin, nix-homebrew, homebrew-core, homebrew-cask, homebrew-bundle, home-manager }: {
darwinConfigurations."MacBook-Den" = nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
./mbp.nix
nix-homebrew.darwinModules.nix-homebrew {
nix-homebrew = {
enable = true;
enableRosetta = true;
user = "duumxh";
taps = {
"homebrew/homebrew-core" = homebrew-core;
"homebrew/homebrew-cask" = homebrew-cask;
"homebrew/homebrew-bundle" = homebrew-bundle;
};
mutableTaps = false;
};
}
home-manager.darwinModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.duumxh = import ./home.nix;
}
];
};
darwinPackages = self.darwinConfigurations."MacBook-Den".pkgs;
};
}