Added nixos configs

This commit is contained in:
2026-02-22 19:25:39 +01:00
parent c0f19a200d
commit 8694deed28
9013 changed files with 118058 additions and 0 deletions
@@ -0,0 +1,33 @@
{ config, pkgs, lib, ... }:
{
imports = [
../../modules/nixos/base.nix
./hardware-configuration.nix
./graphics-effects.nix
./hardware.nix
./disk.nix
];
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "25.11";
# Basic system identity / networking
networking.hostName = "traveldroid";
# Keyboard (Xwayland / X11 apps)
services.xserver.xkb = {
layout = "us";
variant = "";
};
networking.networkmanager.enable = false;
systemd.services."NetworkManager-wait-online".enable = false;
# Enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}