Rename folders coherently

This commit is contained in:
Laurent Gueret
2026-01-27 15:57:56 +01:00
parent 03a8e36d4b
commit 3975dce418
25 changed files with 105 additions and 96 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
# Add your reusable home-manager modules to this directory, on their own file (https://nixos.wiki/wiki/Module).
# These should be stuff you would like to share with others, not your personal configurations.
{
# List your module files here
# my-module = import ./my-module.nix;
imports = [
./submodules/zed.nix
./submodules/jetbrains.nix
];
}
+22
View File
@@ -0,0 +1,22 @@
{
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
@@ -0,0 +1,26 @@
{
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
];
};
}