nobody uses unity anymore lmao

This commit is contained in:
Sakooooo 2023-09-16 07:52:57 +00:00
parent d539048139
commit 5a1181e878
Signed by: sako
GPG key ID: FE52FD65B76E4751
3 changed files with 11 additions and 23 deletions

View file

@ -5,7 +5,6 @@
./javascript.nix ./javascript.nix
./python.nix ./python.nix
./rust.nix ./rust.nix
./unityhub.nix
./nixd.nix ./nixd.nix
./nil.nix ./nil.nix
./lua.nix ./lua.nix

View file

@ -1,9 +1,14 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.editors.emacs;
in
{ {
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.dev.editors.emacs;
in {
options.modules.dev.editors.emacs = { options.modules.dev.editors.emacs = {
enable = mkEnableOption false; enable = mkEnableOption false;
}; };
@ -21,7 +26,7 @@ in
recursive = true; recursive = true;
}; };
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) (nerdfonts.override {fonts = ["JetBrainsMono"];})
]; ];
}; };
} }

View file

@ -1,16 +0,0 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.unity;
in
{
options.modules.dev.unity = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
unityhub
];
};
}