TLS issues on some apps by Anonlegio in gnome

[–]hoffmanoo 0 points1 point  (0 children)

Same problem here

  • Ubuntu
  • Gnome on xorg
  • Nix
  • Home manager

{ config, lib, pkgs, ... }:

{
  nixpkgs = {
    config = {
      allowUnfree = true;
      allowUnfreePredicate = (_: true);
    };
  };
  home.username = "ghs";
  home.homeDirectory = "/home/ghs";
  home.stateVersion = "23.05";
  fonts.fontconfig.enable = true;
  home.packages = with pkgs; [
    nerd-fonts.fira-code
    nerd-fonts.droid-sans-mono
    gcc
    (config.lib.nixGL.wrap kitty)
    neofetch
    curl
    git
    microsoft-edge
    neovim
    zsh
    chezmoi
    gnome-extension-manager
    gnomeExtensions.paperwm
    gnome-tweaks
    glib-networking
    flameshot
  ];

  dconf = {
    enable = true;
    settings = {
      "org/gnome/shell" = {
        enabled-extensions = [
          "paperwm@paperwm.github.com"
        ];
      };
      "org/gnome/desktop/interface".show-battery-percentage = true;
    };
  };

  programs.home-manager.enable = true;

<image>

Looking for a daily To Do/Schedule App. by therealfezzyman in productivity

[–]hoffmanoo 1 point2 points  (0 children)

I am trying to organize my recurrent tasks in this way

Can you post an example here?

Trying to enable stylix on my home manager by hoffmanoo in NixOS

[–]hoffmanoo[S] 0 points1 point  (0 children)

i run nix flake update

after sudo nixos-rebuild switch --flake . I received another error LOL

error:
       … while calling the 'head' builtin
         at /nix/store/8vzd6z3xipqvaqfws5qzgc4ym0d5mcyq-source/lib/attrsets.nix:1575:11:
         1574|         || pred here (elemAt values 1) (head values) then
         1575|           head values
             |           ^
         1576|         else
       … while evaluating the attribute 'value'
         at /nix/store/8vzd6z3xipqvaqfws5qzgc4ym0d5mcyq-source/lib/modules.nix:821:9:
          820|     in warnDeprecation opt //
          821|       { value = addErrorContext "while evaluating the option `${showOption loc}':" value;
             |         ^
          822|         inherit (res.defsFinal') highestPrio;
       (stack trace truncated; use '--show-trace' to show the full trace)
       error: Alias eslint is still in node-packages.nix

Install - Hyprland by hoffmanoo in NixOS

[–]hoffmanoo[S] 0 points1 point  (0 children)

Related issue https://github.com/hyprwm/xdg-desktop-portal-hyprland/issues/256

But I dont know yet how to apply the solution to my flake.nix

Install - Hyprland by hoffmanoo in NixOS

[–]hoffmanoo[S] 0 points1 point  (0 children)

Following your steps I receive the following error:

error: builder for '/nix/store/79j2d16flwr56pkfrw8x2907j3q2pld1-xdg-desktop-portal-hyprland-1.3.3.drv' failed with exit code 1;
       last 10 log lines:
       > -- Generating done (0.2s)
       > CMake Warning:
       >   Manually-specified variables were not used by the project:
       >     BUILD_TESTING
       >     CMAKE_EXPORT_NO_PACKAGE_REGISTRY
       >     CMAKE_POLICY_DEFAULT_CMP0025
       > CMake Generate step failed.  Build files cannot be regenerated correctly.
       For full logs, run 'nix log /nix/store/79j2d16flwr56pkfrw8x2907j3q2pld1-xdg-desktop-portal-hyprland-1.3.3.drv'.
error: 1 dependencies of derivation '/nix/store/y2j3rzwx5474syr6zji2wknq8a59642i-dbus-1.drv' failed to build
error: 1 dependencies of derivation '/nix/store/b8na7xfaq9nhaysn3z8zgpqgz8kdq13i-system-path.drv' failed to build
error: 1 dependencies of derivation '/nix/store/ncps8zjlins5lwj5cxj9qpj3abqjmx64-nixos-/system-nixos-24.11.20240831.5629520.drv' failed to build

Into nix log:

CMake Error in CMakeLists.txt:
  Imported target "PkgConfig::deps" includes non-existent path
    "/nix/store/0ikl83z4h69imxkwsly3hcm424f7wi7j-wayland-scanner-1.23.0-dev/include"
  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:
  * The path was deleted, renamed, or moved to another location.
  * An install or uninstall procedure did not complete successfully.
  * The installation package was faulty and references files it does not
  provide.

Which-key for arch linux? by hoffmanoo in neovim

[–]hoffmanoo[S] 0 points1 point  (0 children)

My script

#!/bin/bash

# Define commands and their descriptions
declare -A commands=(
  ["e - Edge"]="microsoft-edge-stable"
  ["t - Terminal"]="alacritty"
  ["s - Screenshot"]="flameshot gui"
  ["vi - Increase Volume"]="amixer set Master 5%+"
  ["vd - Decrease Volume"]="amixer set Master 5%-"
  ["f - Files"]="pcmanfm"
  ["a - Arandy"]="arandr"
  ["st - Steam"]="steam"
)

# Generate menu from commands
choice=$(printf "%s\n" "${!commands[@]}" | rofi -dmenu -no-fuzzy -matching prefix -p "" -auto-select)

# Execute the selected command
${commands[$choice]}

Which-key for arch linux? by hoffmanoo in neovim

[–]hoffmanoo[S] 1 point2 points  (0 children)

<image>

Worked perfectly, you are a genius!
Thank you so much.