feat: renamed computers to hosts

This commit is contained in:
Artur Manuel 2024-11-30 15:18:36 +00:00
commit b03c70b486
34 changed files with 5 additions and 6 deletions

46
hosts/python/default.nix Normal file
View file

@ -0,0 +1,46 @@
{pkgs, ...}: {
imports = [
./hardware.nix
./disks.nix
./theme.nix
./apps.nix
./users.nix
./fonts.nix
];
config = {
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
services = {
xserver.xkb = {
layout = "us";
options = "eurosign:e,ctrl:nocaps";
};
udev.packages = [
pkgs.android-udev-rules
];
libinput.enable = true;
openssh.enable = true;
};
hardware.graphics = {
enable = true;
enable32Bit = false;
};
networking.networkmanager.enable = true;
time.timeZone = "Europe/London";
i18n.defaultLocale = "nl_NL.UTF-8";
system.stateVersion = "24.11";
};
}