removed other peeps

This commit is contained in:
vali 2024-04-29 22:18:58 +02:00
commit 9005bb3f4e
31 changed files with 40 additions and 937 deletions

17
modules/gui/emacs.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
with lib; let
cfg = config.modules.programs.emacs;
username = config.modules.other.system.username;
in {
options.modules.programs.emacs.enable = mkEnableOption "emacs";
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.emacs = {
enable = true;
package = pkgs.emacs;
};
};
};
}