lowkey kirking it

This commit is contained in:
TheCrazyInsanity
2025-12-16 12:55:40 -05:00
parent fd2389fed1
commit 1f0a61f56e
5 changed files with 140 additions and 94 deletions

View File

@@ -2,21 +2,26 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../global/default.nix
# ../../modules/communication/default.nix
# ../../modules/creative/default.nix
../../modules/development/default.nix
# ../../modules/fabrication/default.nix
../../modules/gaming/default.nix
../../modules/kde/default.nix
../../modules/virtualization/default.nix
# ../../modules/vr/default.nix
];
config,
lib,
pkgs,
...
}:
{
imports = [
./hardware-configuration.nix
../../global/default.nix
# ../../modules/communication/default.nix
# ../../modules/creative/default.nix
../../modules/development/default.nix
# ../../modules/fabrication/default.nix
../../modules/gaming/default.nix
../../modules/kde/default.nix
../../modules/virtualization/default.nix
# ../../modules/vr/default.nix
../../global/eraseyourdarlings.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
@@ -51,9 +56,6 @@
# services.xserver.enable = true; # On anything else modern this should be false.
# Configure keymap in X11
# services.xserver.xkb.layout = "us";
# services.xserver.xkb.options = "eurosign:e,caps:escape";
@@ -134,4 +136,3 @@
system.stateVersion = "25.11"; # Did you read the comment?
}