mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 01:24:57 +08:00
34 lines
603 B
Nix
34 lines
603 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
|
|
./gnome-things.nix
|
|
|
|
# WMish things
|
|
./xmonad
|
|
#./sway.nix
|
|
# ./taffybar # Disabled, because it rarely works
|
|
./xmobar
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
acpi
|
|
mpv
|
|
pulsemixer
|
|
xorg.xmessage
|
|
];
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
#displayManager.gdm.enable = true;
|
|
#desktopManager.gnome.enable = true;
|
|
};
|
|
|
|
}
|