emacs: Improvements

This commit is contained in:
caem 2025-05-12 21:51:42 +02:00
parent dc0c20467f
commit 18565ff9f9
Signed by: caem
GPG key ID: 69A830D03203405F
8 changed files with 49 additions and 2 deletions

View file

@ -1,5 +1,13 @@
{ lib, ... }:
{ lib, pkgs, username, ... }:
{
imports = lib.getModuleImports ./.;
environment = {
persistence."/nix/persist".users."${username}".directories = [
".config/chromium"
];
systemPackages = with pkgs; [
unstable.cromite
];
};
}