[vega] Update config; make gui config generic. [nvim] Use Snacks smart finder instead of fzf and avoid race condition

This commit is contained in:
2025-04-24 13:54:05 -07:00
parent 3198414be4
commit a2f9956824
8 changed files with 46 additions and 54 deletions

View File

@@ -4,7 +4,6 @@
{
pkgs,
inputs,
...
}:
@@ -57,33 +56,6 @@
'';
};
# Enable the X11 windowing system and a display manager
services.xserver = {
enable = true;
displayManager.gdm = {
enable = true;
wayland = true;
};
# displayManager.sddm = {
# enable = true;
# wayland.enable = true;
# };
};
# services.displayManager.ly.enable = true;
# Enable Hyprland so it shows up in the menu
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
# Enable CUPS to print documents.
services.printing = {
enable = true;

View File

@@ -4,6 +4,7 @@
./configuration.nix
./hardware-configuration.nix
../../authorized-keys.nix
../../features/gui.nix
];
nixpkgs.config.allowUnfree = true;