Skip to content

Commit

Permalink
refactor: delete dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed Jan 17, 2024
1 parent 0dda8c6 commit 0d8af77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions modules/nixos/hardware/nvidia/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ in
{
options.elementary.hardware.nvidia = with types; {
enable = mkEnableOption "NVIDIA configuration";
digitalVibranceLevel =
mkOpt (ints.between - 1024 1023) 1023 "Digital vibrance level - integer between -1024 and 1023 (both inclusive)";
};

config = mkIf cfg.enable {
Expand Down
7 changes: 4 additions & 3 deletions modules/nixos/programs/emacs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,16 @@ in
parinfer-rust
# YAML
yaml-language-server
# HTML, CSS, JSON, Eslint
vscode-langservers-extracted
# HTML, CSS (emmet)
emmet-language-server
];

elementary.home = {
programs.emacs = {
enable = true;
package = emacsPackage;
extraConfig = ''
(setq parinfer-rust-library "${pkgs.parinfer-rust}/lib/libparinfer_rust.so")
'';
};
file = {
".emacs.d/init.el".source = ./init.el;
Expand Down

0 comments on commit 0d8af77

Please sign in to comment.