Commit Graph

19 Commits

Author SHA1 Message Date
cguentherTUChemnitz 128a95235f fixing build failure against current nixos-unstable: error: 'noto-fonts-emoji' has been renamed to/replaced by 'noto-fonts-color-emoji' (#26) 2025-11-09 18:34:45 -06:00
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00
Ben Ford b51d8f632b Add custom theme support with wallpaper-based color extraction (#6)
* Add custom theme support with wallpaper-based color extraction

- Extended theme option to accept "custom" value
- Added customTheme configuration with wallpaperPath and variant options
- Integrated nix-colors colorSchemeFromPicture for dynamic color generation
- Updated wallpaper selection to handle custom paths
- Added VSCode theme fallback for custom color schemes
- Fixed nix-colors contrib function call (requires pkgs argument)
- Maintains full backward compatibility with existing themes

Users can now generate themes from their own wallpapers:
  omarchy = {
    theme = "custom";
    customTheme = {
      wallpaperPath = ./wallpapers/my-image.png;
      variant = "dark"; # or "light"
    };
  };

* Fix: Screen sharing broken due to Qt library version mismatch

  File changed: modules/nixos/hyprland.nix

  Problem:
  The omarchy-nix configuration was using xdg-desktop-portal-hyprland from the hyprland flake input, which had a Qt library version mismatch (6.9.1 vs 6.9.0). This caused the
   hyprland-share-picker to crash with "Cannot mix incompatible Qt library" errors, preventing screen sharing from working.

  Solution:
  Changed the portalPackage from the hyprland flake version to the stable nixpkgs version:

  - portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
  + portalPackage = pkgs.xdg-desktop-portal-hyprland; # Use stable nixpkgs version to fix Qt version mismatch

  Why this works:
  - The stable nixpkgs version of xdg-desktop-portal-hyprland has consistent Qt library versions
  - This matches the working configuration used on other NixOS Hyprland setups
  - Maintains all screen sharing functionality while avoiding the Qt version conflict
2025-07-28 08:57:58 -05:00
Henry Sipp e22477bb58 Add exclude_packages to allow modifying default install 2025-07-24 20:42:02 -05:00
Henry Sipp 51193c0973 More changes for last commit 2025-07-22 21:08:35 -05:00
Henry Sipp 1fed2b5d59 Refactor for wallpers, keybinds, add weeb tokyo-light theme 2025-07-22 21:08:27 -05:00
Henry Sipp 8bb8681985 Containers and styling 2025-07-08 20:38:28 -05:00
Henry Sipp db70900337 Update config 2025-07-04 12:55:59 -05:00
Henry Sipp 5756276bb4 1password fix, fingerprint work 2025-07-04 12:10:39 -05:00
Henry Sipp c818f6cada Update themes, make ghostty the default 2025-07-02 15:24:53 -05:00
Henry Sipp 2ccb0d7113 Update themes to use nix-colors base16 2025-07-01 22:15:24 -05:00
Henry Sipp e94c2519fc Bluetooth 2025-07-01 20:39:42 +00:00
Henry Sipp 557f8f8de0 Cleanup 2025-07-01 20:24:13 +00:00
Henry Sipp 6702764e24 Remove hardcoded user name until we can fetch it correctly 2025-07-01 20:21:47 +00:00
Henry Sipp e030d67708 Fonts fixes 2025-07-01 19:59:16 +00:00
Henry Sipp 127438c163 package organization 2025-06-30 09:38:02 -05:00
Henry Sipp 6c4c666bb5 Lazygit fix for podman 2025-06-28 14:05:38 -05:00
Henry Sipp cd4e9e7c0d Cleanup 2025-06-28 13:00:42 -05:00
Henry Sipp 5d3d3d6037 Initial commit 2025-06-28 12:27:26 -05:00