prepared for mininas

This commit is contained in:
Geir Okkenhaug Jerstad 2025-07-07 19:17:33 +02:00
parent d5cc414e88
commit 8fda07ecd3

View file

@ -6,11 +6,12 @@
}: {
imports = [
./hardware-configuration.nix
../../modules/common
../../modules/security/ssh-keys.nix
../../modules/users/sma.nix
../../modules/network/common.nix
../../modules/network/extraHosts.nix
# Development (minimal for server)
../../modules/development/emacs.nix
];
# Bootloader
@ -37,6 +38,14 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Emacs server configuration (minimal)
services.emacs-profiles = {
enable = true;
profile = "nox";
enableDaemon = false; # Don't run daemon on server
user = "sma";
};
# List packages installed in system profile
environment.systemPackages = with pkgs; [
wget