ref(nix): split macOS into two hosts

This commit is contained in:
Léana 江 2024-02-25 21:55:03 +01:00 committed by Léana 江
parent da607ea5f4
commit d5d47663b0
6 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,4 @@
{
imports = [./fonts.nix];
home.homeDirectory = "/Users/leana";
}

View file

@ -0,0 +1,13 @@
{
pkgs,
mypkgs,
...
}: {
home.packages = with pkgs; [
mypkgs.hiosevka-nerd-font-mono
jetbrains-mono
lmodern
cascadia-code
];
}