mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
ItsDrike
ac23da55c5
This configuration was simply copied from my old Arch Linux system. There are some issues that still need to be solved, namely with fonts and missing bitcoin price script, but it's mostly minor.
25 lines
585 B
Nix
25 lines
585 B
Nix
{ lib, ... }: with lib; let
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
in
|
|
{
|
|
options.myOptions.home-manager.programs = {
|
|
launchers = {
|
|
wofi.enable = mkEnableOption "Wofi launcher";
|
|
walker.enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Enable Walker launcher.";
|
|
};
|
|
};
|
|
|
|
bars = {
|
|
eww = {
|
|
enable = mkEnableOption "Eww bar";
|
|
autostart.enable = mkEnableOption "auto-starting eww daemon on graphical-session.target";
|
|
};
|
|
};
|
|
|
|
spotify.enable = mkEnableOption "Spotify";
|
|
};
|
|
}
|