feat: darwin configuration, LnL7/nix-darwin#310 patch

This commit is contained in:
Kat Inskip 2022-07-11 10:43:50 -07:00
parent 6e1080ad2c
commit 2e98ec90e0
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
20 changed files with 183 additions and 82 deletions

7
system/fonts.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
fonts.fonts = with pkgs; [
cantarell-fonts
font-awesome
cozette
] ++ map (variant: iosevka-bin.override { inherit variant; } ) [ "" "ss10" "aile" ];
}

5
system/secrets.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, meta, inputs, lib, pkgs, ... }:
{
imports = lib.optional (meta.trusted ? secrets) meta.trusted.secrets;
}

3
system/time.nix Normal file
View file

@ -0,0 +1,3 @@
{ config, ... }: {
time.timeZone = "America/Vancouver";
}