Skip to content
Open
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
7 changes: 6 additions & 1 deletion home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ in {
enable = true;
};
dircolors.enable = true;
btop.enable = true;
btop = {
enable = true;
package = pkgs.btop.override {
cudaSupport = host-settings.isNvidia;
};
};
zathura.enable = true;
};

Expand Down
7 changes: 6 additions & 1 deletion home/programs/editors/zed.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,12 @@
lsp = {
nil = {
settings = {
autoArchive = true;
nix = {
flake = {
autoArchive = true;
autoEvalInputs = true;
};
};
};
};
pyright = {
Expand Down
1 change: 1 addition & 0 deletions hosts/DanPC/settings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ let
lockAfterSeconds = 60 * 15;
suspendAfterSeconds = 60 * 30;
in rec {
isNvidia = true;
ui.scale = 1.5;
scaled = x: (builtins.ceil (x * ui.scale));
wayland.hyprland.monitor = [
Expand Down
1 change: 1 addition & 0 deletions hosts/framnix/settings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ let
lockAfterSeconds = 60 * 15;
suspendAfterSeconds = 60 * 30;
in rec {
isNvidia = false;
ui.scale = 1.6;
scaled = x: (builtins.ceil (x * ui.scale));
wayland.hyprland.monitor = [
Expand Down
Loading