prepared for mininas
This commit is contained in:
parent
d5cc414e88
commit
8fda07ecd3
1 changed files with 10 additions and 1 deletions
|
@ -6,11 +6,12 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/common
|
|
||||||
../../modules/security/ssh-keys.nix
|
../../modules/security/ssh-keys.nix
|
||||||
../../modules/users/sma.nix
|
../../modules/users/sma.nix
|
||||||
../../modules/network/common.nix
|
../../modules/network/common.nix
|
||||||
../../modules/network/extraHosts.nix
|
../../modules/network/extraHosts.nix
|
||||||
|
# Development (minimal for server)
|
||||||
|
../../modules/development/emacs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader
|
# Bootloader
|
||||||
|
@ -37,6 +38,14 @@
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
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
|
# List packages installed in system profile
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue