46 lines
1005 B
Nix
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?
|
|
|
|
}
|
|
|