28 lines
602 B
Nix
28 lines
602 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
# Core Features
|
|
../features/base.nix
|
|
../features/tui-apps.nix
|
|
../features/openssh-server.nix
|
|
|
|
# Core Tweaks
|
|
../tweaks/zram.nix
|
|
../tweaks/enable_flakes.nix
|
|
../tweaks/disable_nixos_user.nix
|
|
../tweaks/systemd-resolved_nonsense.nix
|
|
|
|
# Lauren Base
|
|
../users/lauren_lagarde/lauren_lagarde.nix
|
|
|
|
# i3wm
|
|
../features/i3wm.nix
|
|
../features/hardware/yubikey.nix
|
|
../tweaks/bluetooth.nix
|
|
../tweaks/intel_igpu_screen_tearing.nix
|
|
|
|
# Dotspace
|
|
../secrets/dotspace.nix
|
|
../features/stronghold-binary-cache.nix
|
|
];
|
|
}
|