mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
feat: darwin configuration, LnL7/nix-darwin#310 patch
This commit is contained in:
parent
6e1080ad2c
commit
2e98ec90e0
20 changed files with 183 additions and 82 deletions
7
system/fonts.nix
Normal file
7
system/fonts.nix
Normal 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
5
system/secrets.nix
Normal 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
3
system/time.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{ config, ... }: {
|
||||
time.timeZone = "America/Vancouver";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue