temperance/configuration.nix: disable emacs, enable docker

This commit is contained in:
Charlie Root 2025-03-31 11:06:22 +02:00
commit 371ad1471e
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -36,6 +36,8 @@ in {
udisks2.enable = true;
};
virtualisation.docker.enable = true;
meta = {
mainUser.gitSigningKey = "";
};
@ -47,7 +49,7 @@ in {
};
programs = {
editors = {
emacs.enable = true;
emacs.enable = false;
# only emacs for me, right now.
neovim.enable = true;
# sadly just not advanced enough, yet.
@ -72,6 +74,10 @@ in {
};
desktops.hyprland.enable = true;
theming = {
gtk.enable = true;
};
services = {
locate.enable = true;
media.mpd = {
@ -89,6 +95,5 @@ in {
btop.enable = true;
nh.enable = true;
};
# style.colorScheme.name = "Black Metal Venom";
};
}