Files
infrastructure/machines/louise/configuration.nix
System administrator 805f4a2916 [louse] add applications
2023-11-04 00:40:37 +01:00

46 lines
1005 B
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../modules/xserver.nix
../modules/malobeo_user.nix
../modules/sshd.nix
../modules/minimal_tools.nix
];
boot.loader.systemd-boot.enable = true;
services.openssh.enable = true;
services.openssh.settings.PermitRootLogin = "yes";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
users.users.malobeo = {
packages = with pkgs; [
firefox
thunderbird
tor-browser-bundle-bin
keepass
libreoffice
gimp
inkscape
okular
];
};
services.acpid.enable = true;
networking.hostName = "louise"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
sound.enable = true;
hardware.pulseaudio.enable = true;
time.timeZone = "Europe/Berlin";
system.stateVersion = "23.05"; # Did you read the comment?
}