added starship

This commit is contained in:
Charlie Root 2024-07-06 22:13:28 +02:00
commit f4f1c5bba7
15 changed files with 553 additions and 71 deletions

View file

@ -1 +1,31 @@
_: {}
{
inputs,
lib,
config,
pkgs,
...
}
: let
inherit (config.modules.other.system) username;
inherit (lib) mkIf mkEnableOption;
cfg = config.modules.programs.ags;
in {
options.modules.programs.ags.enable = mkEnableOption "ags";
config = mkIf cfg.enable {
home-manager.users.${username} = {
imports = [inputs.ags.homeManagerModules.default];
programs.ags = {
enable = true;
configDir = ./config;
extraPackages = with pkgs; [
ags
bun
gtksourceview
webkitgtk
accountsservice
];
};
};
};
}