Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/YOUSIKI/nichijou
Browse files Browse the repository at this point in the history
  • Loading branch information
yousiki committed Jun 24, 2024
2 parents f2ebf71 + f29c3d5 commit e2c41ab
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions cells/darwin/hosts/sakamoto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
inputs.cells.home.homeProfiles.languages
inputs.cells.home.homeProfiles.shell
inputs.cells.home.homeProfiles.ssh
inputs.cells.home.homeProfiles.wezterm
];

bee.home-languages = [
Expand Down
36 changes: 36 additions & 0 deletions cells/home/profiles/wezterm.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
inputs,
cell,
}: {
config,
pkgs,
lib,
...
}: let
l = builtins // lib;

weztermConfig = ''
local wezterm = require 'wezterm'
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.color_scheme = 'Catppuccin Mocha'
config.font = wezterm.font_with_fallback {
'CaskaydiaCove Nerd Font',
'Jetbrains Nerd Font',
'Fira Code',
'Source Code Pro',
}
config.font_size = 13.0
return config
'';
in {
home.file.".config/wezterm/wezterm.lua".text = weztermConfig;
}
1 change: 1 addition & 0 deletions cells/nixos/hosts/hakase/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
inputs.cells.home.homeProfiles.languages
inputs.cells.home.homeProfiles.shell
inputs.cells.home.homeProfiles.ssh
inputs.cells.home.homeProfiles.wezterm
];

bee.home-languages = [
Expand Down
1 change: 1 addition & 0 deletions cells/nixos/hosts/mai/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
inputs.cells.home.homeProfiles.languages
inputs.cells.home.homeProfiles.shell
inputs.cells.home.homeProfiles.ssh
inputs.cells.home.homeProfiles.wezterm
];

bee.home-languages = [
Expand Down

0 comments on commit e2c41ab

Please sign in to comment.