Additional applications and configs (#5)

* Add subdirectories for `macbook` and `tongfang` with config

* Working configuration

* Added Zen Browser as flake

* Add `wezterm` and `nvim`

* Add fonts, `neovim` and `wezterm` config

* Add Logseq

* Add `fzf`
This commit is contained in:
Bart van der Braak 2024-10-17 03:50:29 +02:00 committed by GitHub
parent 10a876fcc4
commit 98c39a11ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 275 additions and 1 deletions

17
tongfang/nixos/flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "TongFang NixOS flake";
inputs = {
zen-browser.url = "github:MarceColl/zen-browser-flake";
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.tongfang = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
specialArgs = { inherit inputs; };
};
};
}