Updated system and added rust-overlay

This commit is contained in:
Emmet 2023-05-20 19:58:07 -05:00
parent fe59fcdaef
commit c54eab2c1e
3 changed files with 83 additions and 14 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
@ -6,6 +6,6 @@
];
programs.alacritty.enable = true;
programs.alacritty.settings = {
window.opacity = 0.9;
window.opacity = lib.mkForce 0.9;
};
}