This commit is contained in:
parent
30b3fcf6e9
commit
98d26317bf
1 changed files with 12 additions and 1 deletions
|
@ -8,7 +8,6 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../git
|
../../git
|
||||||
|
|
||||||
../../helix
|
../../helix
|
||||||
../../mercurial
|
../../mercurial
|
||||||
../../vim
|
../../vim
|
||||||
|
@ -25,6 +24,18 @@
|
||||||
# The platform the configuration will be used on.
|
# The platform the configuration will be used on.
|
||||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
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.enable = true;
|
||||||
homebrew.casks = ["maccy" "firefox"];
|
homebrew.casks = ["maccy" "firefox"];
|
||||||
home-manager.users.cyryl = {...}: {
|
home-manager.users.cyryl = {...}: {
|
||||||
|
|
Loading…
Reference in a new issue