63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disks.nix
|
|
];
|
|
|
|
config = {
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
keyMap = "us";
|
|
};
|
|
|
|
services = {
|
|
desktopManager.plasma6 = {
|
|
enable = true;
|
|
enableQt5Integration = false;
|
|
notoPackage = pkgs.noto-fonts-lgc-plus;
|
|
};
|
|
|
|
xserver.xkb = {
|
|
layout = "us";
|
|
options = "eurosign:e,ctrl:nocaps";
|
|
};
|
|
|
|
libinput.enable = true;
|
|
openssh.enable = true;
|
|
};
|
|
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
nil
|
|
statix
|
|
deadnix
|
|
alejandra
|
|
wget
|
|
;
|
|
};
|
|
|
|
alqueva = {
|
|
sddm.enable = true;
|
|
git.enable = true;
|
|
qutebrowser.enable = true;
|
|
pipewire.enable = true;
|
|
};
|
|
|
|
programs.neovim.enable = true;
|
|
networking.networkmanager.enable = true;
|
|
time.timeZone = "Europe/London";
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
|
system.stateVersion = "24.11";
|
|
};
|
|
}
|