added starship
This commit is contained in:
parent
bae12c442c
commit
f4f1c5bba7
15 changed files with 553 additions and 71 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue