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:51:33 +01:00
|
|
|
homebrew.casks = [
|
2024-07-17 10:32:44 +01:00
|
|
|
"caffeine"
|
2024-06-28 22:51:33 +01:00
|
|
|
"firefox"
|
2024-06-29 13:38:22 +01:00
|
|
|
"istat-menus"
|
2024-08-14 09:14:44 +01:00
|
|
|
"jetbrains-toolbox"
|
2024-06-28 22:51:33 +01:00
|
|
|
"little-snitch"
|
|
|
|
"maccy"
|
2024-08-13 21:32:26 +01:00
|
|
|
"ollama"
|
2024-07-14 21:37:31 +01:00
|
|
|
"protonmail-bridge"
|
2024-06-28 22:51:33 +01:00
|
|
|
"signal"
|
2024-06-29 16:31:05 +01:00
|
|
|
"steam"
|
2024-08-14 09:14:44 +01:00
|
|
|
"syncthing"
|
2024-06-28 23:13:36 +01:00
|
|
|
"tailscale"
|
2024-06-29 15:39:05 +01:00
|
|
|
"teamviewer"
|
2024-06-30 09:58:31 +01:00
|
|
|
"utm"
|
2024-08-25 20:53:43 +01:00
|
|
|
"vnc-viewer"
|
2024-07-14 21:37:31 +01:00
|
|
|
"zed"
|
2024-06-28 22:51:33 +01:00
|
|
|
"zoom"
|
|
|
|
];
|
2024-07-18 09:35:37 +01:00
|
|
|
homebrew.brews = [
|
2024-08-13 21:14:09 +01:00
|
|
|
"autoconf"
|
|
|
|
"automake"
|
2024-08-25 21:23:01 +01:00
|
|
|
"guile"
|
2024-08-13 21:14:09 +01:00
|
|
|
"libtool"
|
2024-08-25 21:23:01 +01:00
|
|
|
{
|
|
|
|
name = "libvirt";
|
|
|
|
restart_service = true;
|
|
|
|
}
|
2024-08-13 21:14:09 +01:00
|
|
|
"qemu"
|
|
|
|
"texinfo"
|
2024-08-25 21:23:01 +01:00
|
|
|
"wget"
|
2024-07-18 09:35:37 +01:00
|
|
|
];
|
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-08-14 09:14:44 +01:00
|
|
|
home.sessionPath = ["$HOME/bin"];
|
2024-06-28 20:20:49 +01:00
|
|
|
home.packages = with pkgs; [];
|
2024-06-28 19:23:39 +01:00
|
|
|
programs = {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|