feat: stubbed out configs for eve home manager user
This commit is contained in:
parent
46890110f8
commit
0c88746da1
8 changed files with 140 additions and 0 deletions
23
modules/home-manager-modules/programs/olympus.nix
Normal file
23
modules/home-manager-modules/programs/olympus.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.programs.olympus;
|
||||
in {
|
||||
options.programs.olympus = {
|
||||
enable = lib.mkEnableOption "olympus";
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.olympus;
|
||||
description = "The olympus package to install.";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [
|
||||
cfg.package
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue