dotfiles/nixos/boxes/airy/default.nix

50 lines
1 KiB
Nix
Raw Normal View History

2024-06-28 19:23:39 +01:00
{
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";
2024-06-28 22:14:29 +01:00
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=";
})
];
2024-06-28 19:23:39 +01:00
homebrew.enable = true;
2024-06-28 22:28:59 +01:00
homebrew.casks = ["maccy" "firefox" "zoom"];
2024-06-28 19:23:39 +01:00
home-manager.users.cyryl = {...}: {
2024-06-28 19:32:33 +01:00
imports = [
../../home-manager/programs/kitty.nix
];
2024-06-28 20:20:49 +01:00
home.packages = with pkgs; [];
2024-06-28 19:23:39 +01:00
programs = {
};
};
}