93 lines
2.3 KiB
Nix
93 lines
2.3 KiB
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
imports =
|
||
[
|
||
../features/audio.nix
|
||
../features/bluetooth.nix
|
||
../flavours/jovian.nix
|
||
];
|
||
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||
boot.initrd.kernelModules = [ ];
|
||
boot.kernelModules = [ "kvm-amd" ];
|
||
boot.extraModulePackages = [ ];
|
||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
||
# Mounts
|
||
fileSystems."/" =
|
||
{ device = "/dev/disk/by-uuid/cb78cd50-72cd-41c4-a930-f0086bb3f248";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
fileSystems."/boot" =
|
||
{ device = "/dev/disk/by-uuid/8741-D2A4";
|
||
fsType = "vfat";
|
||
};
|
||
swapDevices = [ ];
|
||
|
||
networking.hostName = "aphrodite"; # Define your hostname
|
||
|
||
# Steam talks with network manager
|
||
networking.networkmanager.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Rome";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
||
i18n.extraLocaleSettings = {
|
||
LC_ADDRESS = "it_IT.UTF-8";
|
||
LC_IDENTIFICATION = "it_IT.UTF-8";
|
||
LC_MEASUREMENT = "it_IT.UTF-8";
|
||
LC_MONETARY = "it_IT.UTF-8";
|
||
LC_NAME = "it_IT.UTF-8";
|
||
LC_NUMERIC = "it_IT.UTF-8";
|
||
LC_PAPER = "it_IT.UTF-8";
|
||
LC_TELEPHONE = "it_IT.UTF-8";
|
||
LC_TIME = "it_IT.UTF-8";
|
||
};
|
||
|
||
# Configure keymap in X11
|
||
services.xserver = {
|
||
layout = "us";
|
||
xkbVariant = "";
|
||
};
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.admiral0 = {
|
||
isNormalUser = true;
|
||
description = "Radu Andries";
|
||
extraGroups = [ "networkmanager" "wheel" ];
|
||
packages = with pkgs; [];
|
||
};
|
||
|
||
# Allow unfree packages
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
# List packages installed in system profile. To search, run:
|
||
# $ nix search wget
|
||
environment.systemPackages = with pkgs; [
|
||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||
btop
|
||
neofetch
|
||
lshw
|
||
git
|
||
];
|
||
|
||
# Enable the OpenSSH daemon.
|
||
services.openssh.enable = true;
|
||
|
||
# No need for a firewall
|
||
networking.firewall.enable = false;
|
||
|
||
system.stateVersion = "23.05";
|
||
|
||
}
|