dotfiles/nixos/boxes/airy/default.nix
Cyryl Płotnicki e1be4b178e
Some checks failed
use nix / build (push) Failing after 5m22s
add autotools on mac
2024-08-13 21:14:09 +01:00

73 lines
1.3 KiB
Nix

{
config,
pkgs,
inputs,
lib,
nixpkgs-nixos-unstable-and-unfree,
...
}: {
imports = [
../../git
../../helix
../../mercurial
../../vim
../../zsh
];
services.nix-daemon.enable = true;
nix.settings.experimental-features = "nix-command flakes";
programs.zsh.enable = true; # default shell on catalina
system.stateVersion = 4;
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
fonts.packages = with pkgs; [
inconsolata
(fetchzip {
url = "file://" + ../../fonts/berkeley.tar.xz;
sha256 = "sha256-nsDqdQikT65vJVMq7r2MAOxd3xqj8vJ0Ky2y9CfI/bg==";
})
(fetchzip {
url = "file://" + ../../fonts/tragicastle.tar.xz;
sha256 = "sha256-AjvaPmjlyDjBDxeVp1A1yPin0FrwbBib87ywF4GHqS0=";
})
];
homebrew.enable = true;
homebrew.casks = [
"caffeine"
"firefox"
"istat-menus"
"little-snitch"
"maccy"
"protonmail-bridge"
"signal"
"steam"
"tailscale"
"teamviewer"
"utm"
"zed"
"zoom"
];
homebrew.brews = [
"virt-manager"
"autoconf"
"automake"
"libtool"
"wget"
"qemu"
"texinfo"
"guile"
];
home-manager.users.cyryl = {...}: {
imports = [
../../home-manager/programs/kitty.nix
];
home.packages = with pkgs; [];
programs = {
};
};
}