!XQQVyIbcAcHFvzmcTl:nixos.org

NixOS GNOME

339 Members
A room for maintainers of GNOME & GNOME-Related desktop environments (xfce, cinnamon, pantheon...)74 Servers

Load older messages


SenderMessageTime
14 Oct 2024
@vcunat:matrix.orgvcunat * (along with other staging stuff, so there will be more than a week to fix stuff before it hits master) 09:53:35
@bobby285271:matrix.orgbobby285271 The PR is "in good state" for me, personally. 🤷 I am aware Jan reviewing the branch so I guess I will wait for their feedbacks. 13:30:02
@vcunat:matrix.orgvcunat OK, but I wouldn't wait beyond the point when we start the staging-next. Or at least not long beyond. I guess I'd simply merge it myself when starting. 13:52:07
@jtojnar:matrix.orgJan TojnarI managed to go through the downstream diffs and everything looked great, Bobby did a perfect job.22:21:22
@jtojnar:matrix.orgJan TojnarSorry I have not been of much help, only gotten around to testing and reviewing again yesterday. I skimmed through about 20% of the upstream diffs and briefly tested it in a VM but probably won't be able to continue until the weekend.22:21:47
@jtojnar:matrix.orgJan TojnarWill try to test it on my PC during the week but I am okay with merging it as is.22:22:54
@jeff:ocjtech.usJeff FYI I've tried the gnome branch on a couple of systems now and it seems to be working well. I had to disable a couple of packages but those build failures don't seem to be directly related to Gnome. 22:59:17
15 Oct 2024
@fabianhjr:matrix.orgFabián HerediaI have also been running the gnome branch and haven't noticed any issues02:06:45
@fabianhjr:matrix.orgFabián Heredia * I have also been running the gnome branch and haven't noticed any issues (other than plugins that don't yet support gnome 47 unu)02:07:08
@o-santi:matrix.orgLeonardo Santiagohello guys13:20:13
@o-santi:matrix.orgLeonardo SantiagoI have a double monitor setup, one that is 21x9 and the other a 4K tv13:21:25
@o-santi:matrix.orgLeonardo SantiagoI wanted to use the 4K tv with 200% scale (otherwise everything looks so tiny I can't even read) but if I do that, the monitor also get 200% scale 13:22:16
@o-santi:matrix.orgLeonardo Santiago I read online that per-monitor scaling is gated behind the "scale-monitor-framebuffer" experimental feature 13:22:57
@o-santi:matrix.orgLeonardo SantiagoI tried setting it using home-manager dconf module but it seems to not have any effect, does anyone know what is going on?13:23:20
@o-santi:matrix.orgLeonardo Santiago

I can see it being set using dconf dump /:

[org/gnome/mutter]
attach-modal-dialogs=false
dynamic-workspaces=true
edge-tiling=true
experimental-features=['scale-monitor-framebuffer', 'variable-refresh-rate']
overlay-key='Super_L'
workspaces-only-on-primary=true
13:24:05
@o-santi:matrix.orgLeonardo Santiagomy gnome version is 46, which should have this feature13:24:28
@fabianhjr:matrix.orgFabián Herediahttps://github.com/NixOS/nixpkgs/pull/348874 Some last minute updates to gnome for staging-next Currently building the packages (need to build deps first)20:37:36
16 Oct 2024
@jeff:ocjtech.usJeffRedacted or Malformed Event16:08:50
@jeff:ocjtech.usJeffRedacted or Malformed Event16:09:19
@jeff:ocjtech.usJeff

OK, so can anyone tell me why I'm getting the following when trying to build with staging-next? Trying to get latest Gnome 47 packages without waiting for everything to filter down to unstable...

       error: Package ‘apple-sdk-11.3’ in /nix/store/grs11qimnjqwk2ylkvl51w60d9jf5iqi-source/pkgs/by-name/ap/apple-sdk/package.nix:111 is not available on the requested hostPlatform:
         hostPlatform.config = "x86_64-unknown-linux-gnu"
         package.meta.platforms = [
           "x86_64-darwin"
           "i686-darwin"
           "aarch64-darwin"
           "armv7a-darwin"
         ]
16:09:41
@jeff:ocjtech.usJeff rebuilding my config worked just fine with the gnome branch 16:11:16
@k900:0upti.meK900If this is a staging-next regression, please post the full log16:13:11
@jeff:ocjtech.usJeff

Here's the full log:

error:
       … while calling the 'derivationStrict' builtin
         at <nix/derivation-internal.nix>:34:12:
           33|
           34|   strict = derivationStrict drvAttrs;
             |            ^
           35|

       … while evaluating derivation 'home-manager-generation'
         whose name attribute is located at /nix/store/grs11qimnjqwk2ylkvl51w60d9jf5iqi-source/pkgs/stdenv/generic/make-derivation.nix:336:7

       … while evaluating attribute 'buildCommand' of derivation 'home-manager-generation'
         at /nix/store/grs11qimnjqwk2ylkvl51w60d9jf5iqi-source/pkgs/build-support/trivial-builders/default.nix:59:17:
           58|         enableParallelBuilding = true;
           59|         inherit buildCommand name;
             |                 ^
           60|         passAsFile = [ "buildCommand" ]

       … while evaluating the option `home.activation.installPackages.data':

       … while evaluating definitions from `/nix/store/7zbmi61g4bq71j3ixy9b99cgg6yq95nc-source/modules/home-environment.nix':

       (stack trace truncated; use '--show-trace' to show the full, detailed trace)

       error: Package ‘apple-sdk-11.3’ in /nix/store/grs11qimnjqwk2ylkvl51w60d9jf5iqi-source/pkgs/by-name/ap/apple-sdk/package.nix:111 is not available on the requested hostPlatform:
         hostPlatform.config = "x86_64-unknown-linux-gnu"
         package.meta.platforms = [
           "x86_64-darwin"
           "i686-darwin"
           "aarch64-darwin"
           "armv7a-darwin"
         ]
         package.meta.badPlatforms = [
           {
             cpu = {
               bits = 32;
             };
           }
         ]
       , refusing to evaluate.

       a) To temporarily allow packages that are unsupported for this system, you can use an environment variable
          for a single invocation of the nix tools.

            $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1

          Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,
                then pass `--impure` in order to allow use of environment variables.

       b) For `nixos-rebuild` you can set
         { nixpkgs.config.allowUnsupportedSystem = true; }
       in configuration.nix to override this.

       c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
         { allowUnsupportedSystem = true; }
       to ~/.config/nixpkgs/config.nix.
16:15:02
@k900:0upti.meK900 Run it with --show-trace 16:15:30
@jeff:ocjtech.usJeffDownload err.log16:16:59
@jeff:ocjtech.usJeff ok, that's with --show-trace 16:17:15
@k900:0upti.meK900That is very strange16:18:07
@k900:0upti.meK900Something in your home-manager config is pulling in the Apple SDK16:18:14
@k900:0upti.meK900And the error doesn't really say what16:18:21
@k900:0upti.meK900 … while evaluating attribute 'buildInputs' of derivation 'wezterm-20240203-110809-5046fc22'
16:18:50

Show newer messages


Back to Room ListRoom Version: 6