feat: add zenTyp module
Some checks are pending
Check flake / check (push) Waiting to run

This commit is contained in:
Youwen Wu 2025-01-17 20:53:34 -08:00
parent 5937105d91
commit dd49735b21
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
3 changed files with 28 additions and 2 deletions

View file

@ -897,7 +897,8 @@
"ucode": "ucode", "ucode": "ucode",
"vesktop-bin": "vesktop-bin", "vesktop-bin": "vesktop-bin",
"viminal": "viminal", "viminal": "viminal",
"zen-browser": "zen-browser" "zen-browser": "zen-browser",
"zenTyp": "zenTyp"
} }
}, },
"rust-overlay": { "rust-overlay": {
@ -1239,6 +1240,21 @@
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"type": "github" "type": "github"
} }
},
"zenTyp": {
"locked": {
"lastModified": 1737175604,
"narHash": "sha256-NdXhPEmfpBa1cKplQzko760RR5daaQpUREQgDunm9eU=",
"owner": "youwen5",
"repo": "zen.typ",
"rev": "b97ce5a06016f053355f609669d2239b185f856e",
"type": "github"
},
"original": {
"owner": "youwen5",
"repo": "zen.typ",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -99,6 +99,8 @@
url = "github:nix-community/NixOS-WSL"; url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
zenTyp.url = "github:youwen5/zen.typ";
}; };
outputs = outputs =

View file

@ -1,11 +1,19 @@
{ config, pkgs, ... }: {
config,
pkgs,
inputs,
...
}:
{ {
imports = [ imports = [
./secrets ./secrets
./neomutt.nix ./neomutt.nix
inputs.zenTyp.homeManagerModules.default
]; ];
zenTyp.enable = true;
home = { home = {
username = "youwen"; username = "youwen";
homeDirectory = "/home/youwen"; homeDirectory = "/home/youwen";