treewide: slim down and reorganize config

This commit is contained in:
insects 2024-10-29 15:37:30 +01:00
parent 778775ceb6
commit 8a5be644b8
33 changed files with 131 additions and 755 deletions

View file

@ -1,6 +1,14 @@
# enoko is my framework 13-inch AMD laptop, running nixos
{ pkgs, ... }: {
imports = [ ./global.nix ./global.linux.nix ./features/desktop ];
imports = [
./global.nix
./global.linux.nix
./features/desktop
./features/devel/js.nix
./features/devel/java.nix
./features/devel/rust.nix
./features/devel/dbs.nix
];
config.monitors = [{
name = "eDP-1";
@ -13,10 +21,4 @@
}];
config.home.packages = with pkgs; [ easyroam-connect-desktop ];
# Fix HiDPI scaling
# config.wayland.windowManager.hyprland = {
# settings.xwayland.force_zero_scaling = true;
# settings.env = "GDK_SCALE,2";
# };
}