Finish alacritty module

This commit is contained in:
Lyndon Sanche 2022-07-20 07:59:30 -06:00
parent c3a39e1e32
commit 458d0d3719
No known key found for this signature in database
GPG key ID: 6F8E82F60C799B18
2 changed files with 3 additions and 2 deletions

View file

@ -54,6 +54,7 @@
})) // { })) // {
nixosModules.stylix = { pkgs, ... }@args: { nixosModules.stylix = { pkgs, ... }@args: {
imports = [ imports = [
./modules/alacritty.nix
./modules/console.nix ./modules/console.nix
./modules/dunst.nix ./modules/dunst.nix
./modules/feh.nix ./modules/feh.nix

View file

@ -5,12 +5,12 @@ let
owner = "aarowill"; owner = "aarowill";
repo = "base16-alacritty"; repo = "base16-alacritty";
rev = "914727e48ebf3eab1574e23ca0db0ecd0e5fe9d0"; rev = "914727e48ebf3eab1574e23ca0db0ecd0e5fe9d0";
sha256 = lib.fakeSha256; sha256 = "sha256-oDsuiKx8gt+Ov7hZ9PibIQtE81IRSLO+n5N99WeiK34=";
}; };
}; };
in in
{ {
home-manager.sharedModules = [{ home-manager.sharedModules = [{
programs.alacritty.settings.import = [ themeFile ]; programs.alacritty.settings.import = [ themeFile ];
}; }];
} }