nix-config/hosts/poppy/default.nix
mikl c95e4a1488 inline common-darwin into poppy (only one darwin host for now)
- merged common-darwin/default.nix content into hosts/poppy/default.nix
- removed hosts/common-darwin/
- removed ./hosts/common-darwin import from mkDarwin in flake.nix

linux hosts/common/ stays — already 2 linux hosts (muscari + rosemary)
2026-06-26 23:39:58 +03:00

27 lines
No EOL
479 B
Nix

{ pkgs, ... }:
{
networking.hostName = "poppy";
# Allow unfree packages (some macOS-ported tools need it)
nixpkgs.config.allowUnfree = true;
system.primaryUser = "mikl";
# nix settings
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
# nix daemon (multi-user install)
services.nix-daemon.enable = true;
users.users.mikl = {
home = "/Users/mikl";
shell = pkgs.zsh;
};
environment.systemPackages = [
pkgs.vim
];
}