format updates

This commit is contained in:
Aly Raffauf 2024-04-09 13:17:19 -04:00
parent 0264979d0b
commit c90a2c8e13
2 changed files with 8 additions and 3 deletions

View file

@ -38,7 +38,7 @@
wayland.windowManager.sway.enable = true;
wayland.windowManager.sway.config = {
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
bars = [{command = "${pkgs.waybar}/bin/waybar";}];
# bars.waybar.command = "${pkgs.waybar}/bin/waybar";
terminal = "${pkgs.alacritty}/bin/alacritty";
menu = "${pkgs.fuzzel}/bin/fuzzel";

View file

@ -1,9 +1,14 @@
{ pkgs, lib, config, ... }: {
{
pkgs,
lib,
config,
...
}: {
options = {
guiApps.google-chrome.enable = lib.mkEnableOption "Enable Google Chrome.";
};
config = lib.mkIf config.guiApps.google-chrome.enable {
home.packages = with pkgs; [ google-chrome ];
home.packages = with pkgs; [google-chrome];
};
}