mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-29 09:05:00 +08:00
18 lines
339 B
Nix
18 lines
339 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
# Isolated features
|
|
./hidpi.nix
|
|
./swap-caps-ctrl.nix
|
|
./light-terminal.nix
|
|
./screencapture.nix
|
|
./fonts.nix
|
|
./touchpad-trackpoint.nix
|
|
./autolock.nix
|
|
./redshift.nix
|
|
|
|
# WMish things
|
|
./xmonad
|
|
#./sway.nix
|
|
# ./taffybar # Disabled, because it rarely works
|
|
];
|
|
}
|