mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -05:00
format updates
This commit is contained in:
parent
0264979d0b
commit
c90a2c8e13
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
wayland.windowManager.sway.enable = true;
|
wayland.windowManager.sway.enable = true;
|
||||||
wayland.windowManager.sway.config = {
|
wayland.windowManager.sway.config = {
|
||||||
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
|
bars = [{command = "${pkgs.waybar}/bin/waybar";}];
|
||||||
# bars.waybar.command = "${pkgs.waybar}/bin/waybar";
|
# bars.waybar.command = "${pkgs.waybar}/bin/waybar";
|
||||||
terminal = "${pkgs.alacritty}/bin/alacritty";
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
menu = "${pkgs.fuzzel}/bin/fuzzel";
|
menu = "${pkgs.fuzzel}/bin/fuzzel";
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
{ pkgs, lib, config, ... }: {
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
options = {
|
options = {
|
||||||
guiApps.google-chrome.enable = lib.mkEnableOption "Enable Google Chrome.";
|
guiApps.google-chrome.enable = lib.mkEnableOption "Enable Google Chrome.";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.guiApps.google-chrome.enable {
|
config = lib.mkIf config.guiApps.google-chrome.enable {
|
||||||
home.packages = with pkgs; [ google-chrome ];
|
home.packages = with pkgs; [google-chrome];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue