Add settings for graphics

This commit is contained in:
Leonardo Eugênio 2022-08-06 18:32:34 -03:00
parent 89114cc957
commit 314c386085
9 changed files with 50 additions and 54 deletions

View file

@ -1,5 +1,5 @@
{ config, pkgs, lib, font, ... }: let
inherit (import ./variables.nix) key theme color accent font;
{ config, pkgs, lib, font, ... }:
let inherit (import ./variables.nix) key theme color accent font;
in {
config = {
programs.helix = {
@ -62,8 +62,6 @@ in {
keys.insert = { "A-k" = "normal_mode"; };
};
};
home.packages = with pkgs; [
pkgs.unstable.helix
];
home.packages = with pkgs; [ pkgs.unstable.helix ];
};
}