Large change on folder structure AND used of import-tree.

This commit is contained in:
Laurent Gueret
2026-01-28 13:18:17 +01:00
parent 3975dce418
commit ae5ac475c5
53 changed files with 253 additions and 278 deletions
-6
View File
@@ -1,6 +0,0 @@
{
imports = [
./submodules/zed.nix
./submodules/jetbrains.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.within.home.jetbrains;
in
{
options.within.home.jetbrains = {
enable = mkEnableOption "System dns service";
};
config = mkIf cfg.enable {
home.packages = with pkgs.unstable; [
jetbrains.pycharm
];
};
}
-26
View File
@@ -1,26 +0,0 @@
{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.within.home.zed;
in
{
options.within.home.zed = {
enable = mkEnableOption "System dns service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
zed-editor
nil
nixd
];
};
}