Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update flake inputs and npins #64

Merged
merged 6 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 74 additions & 74 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion nixos/hosts/alpha/hardware/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ pkgs
{ config
, pkgs
, modulesPath
, ...
}: {
Expand Down Expand Up @@ -105,6 +106,16 @@
hardware = {
cpu.intel.updateMicrocode = true;
nvidia = {
# Must be set explicitly since https://github.com/NixOS/nixpkgs/commit/20c5d0adfb4cd7a06b7c1251cb0852f404d93e59
open = false;
package = config.boot.kernelPackages.nvidiaPackages.mkDriver {
version = "555.58.02";
sha256_64bit = "sha256-xctt4TPRlOJ6r5S54h5W6PT6/3Zy2R4ASNFPu8TSHKM=";
sha256_aarch64 = "sha256-wb20isMrRg8PeQBU96lWJzBMkjfySAUaqt4EgZnhyF8=";
openSha256 = "sha256-8hyRiGB+m2hL3c9MDA/Pon+Xl6E788MZ50WrrAGUVuY=";
settingsSha256 = "sha256-ZpuVZybW6CFN/gz9rx+UJvQ715FZnAOYfHn5jt5Z2C8=";
persistencedSha256 = "sha256-a1D7ZZmcKFWfPjjH1REqPM5j/YLWKnbkP9qfRyIyxAw=";
};
modesetting.enable = true;
# Set up nvidia prime
prime = {
Expand Down
5 changes: 4 additions & 1 deletion planet/modules/home-manager/wezterm/wezterm.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@
:font_size 16
:use_fancy_tab_bar false
:hide_tab_bar_if_only_one_tab true
:window_padding {:left "3cell" :right "3cell" :top "1cell" :bottom "1cell"}}
:window_padding {:left "3cell" :right "3cell" :top "1cell" :bottom "1cell"}
;; Work around https://github.com/wez/wezterm/issues/5990
:front_end "WebGpu"
:enable_wayland false}
Loading