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