add(fonts): modular fonts
This commit is contained in:
@@ -56,6 +56,10 @@
|
||||
url = "github:tpwrules/nixos-apple-silicon";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
unlisted-fonts = {
|
||||
url = "git+https://git.sakamoto.dev/kenji/nix-fonts.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
@@ -74,10 +78,12 @@
|
||||
nixosConfigurations = {
|
||||
hakase = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
system = "x86_64-linux";
|
||||
} // allConfig.hakase;
|
||||
specialArgs =
|
||||
{
|
||||
inherit inputs;
|
||||
system = "x86_64-linux";
|
||||
}
|
||||
// allConfig.hakase;
|
||||
modules = [
|
||||
home-manager.nixosModules.home-manager
|
||||
sops-nix.nixosModules.sops
|
||||
@@ -88,10 +94,12 @@
|
||||
|
||||
macbook = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
system = "aarch64-linux";
|
||||
} // allConfig.macbook;
|
||||
specialArgs =
|
||||
{
|
||||
inherit inputs;
|
||||
system = "aarch64-linux";
|
||||
}
|
||||
// allConfig.macbook;
|
||||
modules = [
|
||||
home-manager.nixosModules.home-manager
|
||||
sops-nix.nixosModules.sops
|
||||
|
||||
Reference in New Issue
Block a user