code-cursor config WIP

wildfire: 209 current  2025-06-19 23:30:43  25.05.20250617.36ab78d  6.15.2                          *

wildfire: 210 current  2025-06-19 23:35:09  25.05.20250617.36ab78d  6.15.2                          *
This commit is contained in:
2025-06-19 23:28:48 +02:00
parent 335362ea57
commit 51f82ed57a
2 changed files with 67 additions and 0 deletions

View File

@ -2,6 +2,7 @@
# This module contains the base settings that every system should have
{
pkgs,
pkgs-unstable,
inputs,
...
}: {
@ -20,6 +21,10 @@
# Use system packages instead of separate user packages (saves space)
useGlobalPkgs = true;
useUserPackages = true;
# Pass unstable packages to home-manager modules
extraSpecialArgs = {
pkgs-unstable = pkgs-unstable;
};
# User-specific Home Manager configurations
users.schulze.imports = [
./home/hyprland.nix # Hyprland window manager user config
@ -29,6 +34,7 @@
./home/ghostty.nix # Ghostty config
./home/gtk.nix # GTK theme
./home/nextcloud.nix # Nextcloud autostart
./home/code-cursor.nix # Cursor config
];
};