Skip to content

Commit

Permalink
fix wezterm & add nixgl
Browse files Browse the repository at this point in the history
  • Loading branch information
otosky committed Mar 31, 2024
1 parent ac7fc58 commit 75800c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
nixgl.url = "github:guibou/nixgl";

home-manager = {
url = "github:nix-community/home-manager";
Expand All @@ -13,6 +14,7 @@

outputs = {
nixpkgs,
nixgl,
home-manager,
...
} @ inputs: {
Expand Down
7 changes: 6 additions & 1 deletion home/users/olivertosky/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
imports = [
../../apps/neovim
../../apps/fish
../../apps/wezterm
];

nixpkgs.overlays = [
Expand Down Expand Up @@ -118,4 +117,10 @@
xnoremap <leader>p "_dP
'';
};

programs.wezterm = {
enable = true;
package = pkgs.wezterm;
extraConfig = builtins.readFile ../../apps/wezterm/wezterm.lua;
};
}

0 comments on commit 75800c5

Please sign in to comment.