chore(solterra): rename python to solterra
python is not a good hostname, subaru cars are better.
This commit is contained in:
parent
8b918a57a6
commit
526881811c
26 changed files with 57 additions and 121 deletions
58
hosts/solterra/default.nix
Normal file
58
hosts/solterra/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./users/amadaluzia
|
||||
./hardware.nix
|
||||
./disks.nix
|
||||
./theme.nix
|
||||
./apps.nix
|
||||
./fonts.nix
|
||||
./forgejo.nix
|
||||
];
|
||||
|
||||
config = {
|
||||
boot = {
|
||||
initrd.systemd.additionalUpstreamUnits = ["systemd-boot.service"];
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
inputs.alqages.overlays.default
|
||||
];
|
||||
|
||||
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 = "de_DE.UTF-8";
|
||||
system.stateVersion = "24.11";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue