some things (tiny commit ik)
This commit is contained in:
parent
6b76450816
commit
2c282d8bf7
38 changed files with 771 additions and 102 deletions
|
@ -62,7 +62,7 @@ in {
|
|||
};
|
||||
})
|
||||
(lib.mkIf cfg.lang.c.enable {
|
||||
home.packages = with pkgs; [clang-tools];
|
||||
home.packages = with pkgs; [clang-tools buckle];
|
||||
})
|
||||
(lib.mkIf cfg.lang.csharp.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
self,
|
||||
...
|
||||
}: let
|
||||
|
@ -10,8 +11,12 @@ in {
|
|||
options.xun.gaming = {
|
||||
krunker.enable = lib.mkEnableOption "krunker";
|
||||
roblox.sobercookie.enable = lib.mkEnableOption "sobercookie";
|
||||
umu.enable = lib.mkEnableOption "umu-launcher";
|
||||
};
|
||||
config = lib.mkMerge [
|
||||
(lib.mkIf cfg.umu.enable {
|
||||
home.packages = [inputs.umu.packages.${pkgs.system}.umu];
|
||||
})
|
||||
(lib.mkIf cfg.krunker.enable {
|
||||
home.packages = [
|
||||
self.packages.${pkgs.system}.krunker
|
||||
|
@ -19,7 +24,7 @@ in {
|
|||
})
|
||||
(lib.mkIf cfg.roblox.sobercookie.enable {
|
||||
home.packages = [
|
||||
self.packages.${pkgs.system}.sobercookie
|
||||
inputs.sobercookie.packages.${pkgs.system}.default
|
||||
];
|
||||
})
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue