Giter Club home page Giter Club logo

nyx's Introduction

Chaotic's Nyx

Six frogs with capes, aligned like the NixOS logo, with intercalated shades of green

Nix flake for "too much bleeding-edge" and unreleased packages (e.g., mesa_git, linux_cachyos, firefox_nightly, sway_git, gamescope_git). And experimental modules (e.g., HDR, duckdns).

From the Chaotic Linux User Group (LUG), the same one that maintains Chaotic-AUR! 🧑🏻‍💻

The official source-code repository is available as "chaotic-cx/nyx" at GitHub.

PLEASE AVOID POSTING ISSUES IN NIXOS' MATRIX, DISCOURSE, DISCORD, ETC. USE OUR REPO'S ISSUES, TELEGRAM GROUP, OR #chaotic-nyx:ubiquelambda.dev ON MATRIX INSTEAD.

News

A news channel can be found on Telegram.

How to use it

On NixOS

We recommend integrating this repo using Flakes:

{
  description = "My configuration";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
  };

  outputs = { nixpkgs, chaotic, ... }: {
    nixosConfigurations = {
      hostname = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          ./configuration.nix # Your system configuration.
          chaotic.nixosModules.default # OUR DEFAULT MODULE
        ];
      };
    };
  };
}

In your configuration.nix enable the packages and options that you prefer:

{ pkgs, ... }:
{
  environment.systemPackages = [ pkgs.input-leap-git ];
  chaotic.mesa-git.enable = true;
}

On Home-Manager

This method is for home-manager setups without NixOS.

We recommend integrating this repo using Flakes:

{
  description = "My configuration";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
    home-manager = {
      url = "github:nix-community/home-manager";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { nixpkgs, chaotic, ... }: {
    homeConfigurations = {
      hostname = home-manager.lib.homeManagerConfiguration {
        pkgs = nixpkgs.legacyPackages.x86_64-linux;
        modules = [
          ./home-manager/default.nix
          chaotic.homeManagerModules.default # OUR DEFAULT MODULE
        ];
      };
    };
  };
}

In your home-manager/default.nix add a nix.package, and enable the desired packages:

{ pkgs, ... }:
{
  nix.package = pkgs.nix;
  home.packages = [ pkgs.input-leap-git ];
}

Running packages (without installing)

Besides using our module/overlay, you can run packages (without installing them) using:

nix run github:chaotic-cx/nyx/nyxpkgs-unstable#firefox_nightly

Binary Cache notes

You'll get the binary cache added to your configuration as soon as you add our default module. We do this automatically, so we can gracefully update the cache's address and keys without prompting you for manual work.

If you dislike this behavior for any reason, you can disable it with chaotic.nyx.cache.enable = false.

Remember: If you want to fetch derivations from our cache, you'll need to enable our module and rebuild your system before adding these derivations to your configuration.

Commands like nix run ..., nix develop ..., and others, when using our flake as input, will ask you to add the cache interactively when missing from your user's nix settings.

If you want to use the cache right from the installation media, install your system using nixos-install --flake /mnt/etc/nixos#mymachine --option 'extra-substituters' 'https://nyx.chaotic.cx/' --option extra-trusted-public-keys "chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8=" (replace mymachine with your new host's name).

FlakeHub notes

FlakeHub

Add chaotic to your flake.nix, make sure to use the rolling *.tar.gz to keep using the latest packages:

{
  inputs.chaotic.url = "https://flakehub.com/f/chaotic-cx/nyx/*.tar.gz";
}

Then follow one of the guides above.

Lists of options and packages

An always up-to-date list of all our options and packages is available at: List page.

Harder stuff

Some packages are harder to use, I'll go into details in the following paragraphs.

Using linux-cachyos with sched-ext

Since sched-ext patches have been added to linux-cachyos, you can just use that kernel.

First, add this to your configuration:

{
  boot.kernelPackages = pkgs.linuxPackages_cachyos;
  chaotic.scx.enable = true; # by default uses scx_rustland scheduler
}

Then, with the new kernel booted, check if the correct kernel booted:


╰─λ zgrep 'SCHED_CLASS' /proc/config.gz
CONFIG_SCHED_CLASS_EXT=y

If the scheduler is not working for some reason, you can manually start it like:


╰─λ sudo scx_rusty
21:38:53 [INFO] CPUs: online/possible = 24/32
21:38:53 [INFO] DOM[00] cpumask 00000000FF03F03F (20 cpus)
21:38:53 [INFO] DOM[01] cpumask 0000000000FC0FC0 (12 cpus)
21:38:53 [INFO] Rusty Scheduler Attached

You can choose a different scheduler too.

{
  chaotic.scx.scheduler = "scx_rusty";
}

There are other scx_* binaries for you to play with, or head to github.com/sched-ext/scx for instructions on how to write one of your own.

Using qtile from git

{
  services.xserver.windowManager.qtile = {
    enable = true;
    backend = "wayland";
    package = pkgs.qtile-module_git;
    extraPackages = _pythonPackages: [ pkgs.qtile-extras_git ];
  };
  # if you want a proper wayland+qtile session, and/or a "start-qtile" executable in PATH:
  chaotic.qtile.enable = true;
}

Notes

Our branches

:godmode: Our nyxpkgs-unstable branch is the one that's always cached.

:shipit: The main branch is the primary target for contribution.

Contributions

We do accept third-party authored PRs.

Upstream to nixpkgs

If you are interested in pushing any of these packages to the upstream nixpkgs, you have our blessing.

If one of our contributors is mentioned in the deveriation's mantainers list (in this repository) please keep it when pushing to nixpkgs. But, please, tag us on the PR so we can participate in the reviewing.

Forks and partial code-taking

You are free to use our code, or portions of our code, following the MIT license restrictions.

Suggestions

If you have any suggestion to enhance our packages, modules, or even the CI's codes, let us know through the GitHub repo's issues.

Building over the user's pkgs

For cache reasons, Chaotic-Nyx now defaults to always use nixpkgs as provider of its dependencies.

If you need to change this behavior, set chaotic.nyx.onTopOf = "user-pkgs";. Be warned that you mostly won't be able to benefit from our binary cache after this change.

You can also disable our overlay entirely by configuring chaotic.nyx.overlay.enable = false;.

Why am I building a kernel? Basic cache troubleshooting

For starters, suppose you're using our linuxPackages_cachyos as the kernel and an up-to-date flake lock. Check if all these three hashes prompt the same:


╰─λ nix eval 'github:chaotic-cx/nyx/nyxpkgs-unstable#linuxPackages_cachyos.kernel.outPath'
"/nix/store/441qhriiz5fa4l3xvvjw3h4bps7xfk08-linux-6.8.7"

╰─λ nix eval 'chaotic#linuxPackages_cachyos.kernel.outPath'
"/nix/store/441qhriiz5fa4l3xvvjw3h4bps7xfk08-linux-6.8.7"

╰─λ nix eval '/etc/nixos#nixosConfigurations.{{HOSTNAME}}.config.boot.kernelPackages.kernel.outPath'
"/nix/store/441qhriiz5fa4l3xvvjw3h4bps7xfk08-linux-6.8.7"

If the second is different from the first, you're probably adding a inputs.nixpkgs.follows to chaotic, simply remove it.

If the third is different from the first, you're most likely using an overlay that's changing the kernel or one of its dependencies; check your nixpkgs.overlays config.


If they all match, and you're still rebuilding the kernel, copy the hash from the result above, then change it in the following curl command:


╰─λ curl -L 'https://nyx.chaotic.cx/441qhriiz5fa4l3xvvjw3h4bps7xfk08.narinfo'
StorePath: /nix/store/441qhriiz5fa4l3xvvjw3h4bps7xfk08-linux-6.8.7
URL: nar/e5ccded34e4608448c49d3e9fdc92441cd564ae629a4b93fd3f8a334bca7c71d.nar.zst
Compression: zstd
FileHash: sha256:e5ccded34e4608448c49d3e9fdc92441cd564ae629a4b93fd3f8a334bca7c71d
FileSize: 172226528
NarHash: sha256:1v410bnc3qazxscwxvm80c40i0fxzp0amvp93y0y4x3kikdwz035
NarSize: 184989384
References:
Deriver: snb6mg44fflzp3vm5fh4ybxa5j4nlfa5-linux-6.8.7.drv
Sig: chaotic-nyx.cachix.org-1:L0D5GiJf/VEc1brcqYSB+vzYDDV6ZoDP59b+0mrX3bm2b5bbvtH3xOR4XEXy7QILYoIx2Pd64qWN+6okOMQZCA==

If the command above fails without an 404, then you have an issue with your internet connection. If it fails with 404, then tag pedrohlc (Matrix, Telegram or GitHub), he really broke the cache.

If the command succeeds, and you're still building the cache, it can happen because of two things: (1) you might have tried to fetch said package before we deployed, then Nix will cache the 404 and won't try again; (2) you might have a misconfigured /etc/nix/nix.conf or outdated nix-daemon.

For the second one, check if it looks like this (the word “chaotic” should appear three times):


╰─λ grep chaotic /etc/nix/nix.conf
substituters = https://nix-community.cachix.org/ https://nyx.chaotic.cx/ https://cache.nixos.org/
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= nyx.chaotic.cx-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8= chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8

An outdated nix-daemon can happen when you change nix settings, then nixos-rebuilt your system, but you didn't restart the nix-daemon service. The easiest way to fix it is to reboot.

Maintainence

The code in the devshells directory is used to automate our CIs and maintainence processes.

Build them all

To build all the packages and push their cache usptream, use:

nix develop . -c chaotic-nyx-build

This commands will properly skip already-known failures, evaluation failures, building failures, and even skip any chain of failures caused by internal-dependecies. It will also avoid to download what it's already in our cache and in the upstream nixpkgs' cache.

A list of what successfully built, failed to build, hashes of all failures, paths to push to cache and logs will be available at the /tmp/nix-shell.*/tmp.*/ directory. This directory can be specified with the NYX_WD envvar.

Check for evaluation differerences

You can compare a branch with another like this:

machine=$(uname -m)-linux
A='github:chaotic-cx/nyx/branch-a'
B='github:chaotic-cx/nyx/branch-b'

nix build --impure --expr \
  "(builtins.getFlake \"$A\").devShells.$machine.comparer.passthru.any \"$B\""

After running, you'll find all the derivations that changed in the result file.

Known failures

All the hashes that are known to produce build-time failures are kept in devshells/failures.nix.

Our builder produces a new-failures.nix that must be used to update this file in every PR.

Banished and rejected packages

There are none (so far).

nyx's People

Contributors

anthr76 avatar chaotic-temeraire avatar chn-beta avatar dependabot[bot] avatar diamondy4 avatar dr460nf1r3 avatar drishal avatar duvas1 avatar girlbossceo avatar github-actions[bot] avatar icedborn avatar johnrtitor avatar justtne avatar leonardohn avatar ludovicopiero avatar pedrohlc avatar praetoriam avatar rodrgz avatar silvanshade avatar supersamus avatar surfaceflinger avatar thiagokokada avatar yavko avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

nyx's Issues

[Request] linux-cachyos-sched-ext

Link to the package upstream website/repository

linux-cachyos-sched-ext - https://github.com/CachyOS/linux-cachyos/tree/master/linux-cachyos-sched-ext

Utility this package has for you

I am still learning Nix and am working on building this one for myself. But I really want to experiment with this new CPU Scheduler and it is tempting me to hop on Arch just to give it a try (the easy way). I think it would be neat if we had additional kernel options in the repo. For this request I really am just requesting sched-ext. I realize we don't need a million kernel options :).

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

No, but for a few.

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Bug] linuxPackages_cachyos-lto.nvidia_x11 fails to build (fix included)

What happens?

The linuxPackages_cachyos-lto.nvidia_x11 fails to build due to permission errors related to ThinLTO.

One would encounter this with the following configuration:

{
  boot.kernelPackages = pkgs.linuxPackages_cachyos-lto;
  hardware.nvidia.package = config.boot.kernelPackages.nvidia_x11;
}

What is expected to happen?

Ideally linuxPackages_cachyos-lto.nvidia_x11 should build without errors.

If possible, please attach logs

No response

More information

It's possible to fix the ThinLTO permission errors by using the --thinlto-cache-dir=<dir> option and specifying a directory with appropriate permissions.

For example, you can create a suitable directory with the following:

sudo mkdir -p -m0770 /var/cache/clang-thinlto
sudo chown root:nixbld /var/cache/clang-thinlto

Next you need to add the path to the build sandbox paths and override the makeFlags of the kernel:

{
  nix.settings.extra-sandbox-paths = [
    "/var/cache/clang-thinlto"
  ];
  nixpkgs.overlays = [
    (final: prev: {
      linuxPackages_cachyos-lto-with-fixed-nvidia = final.linuxPackages_cachyos-lto.override (linuxPackagesArgs: {
        linuxPackagesFor = kernel: linuxPackagesArgs.linuxPackagesFor (
          kernel.overrideAttrs (kernelAttrs: {
            makeFlags = kernelAttrs.makeFlags ++ [
              "KBUILD_LDFLAGS+=--thinlto-cache-dir=/var/cache/clang-thinlto"
            ];
          })
        );
      });
    })
  ];
  boot.kernelPackages = pkgs.linuxPackages_cachyos-lto-with-fixed-nvidia;
  hardware.nvidia.package = config.boot.kernelPackages.nvidia_x11;
}

[Bug Report] scx_lavd failed to run

What happens?

scx_lavd failed to start.

What is expected to happen?

scx_lavd runs flawlessly.

If possible, please attach logs

⯁ flake git:(master) ✗ ❯❯❯ sudo scx_lavd
Error: Failed to load BPF program

Caused by:
    Invalid argument (os error 22)

More information

nix store path

/nix/store/m890hnwrhdn1jn1vd01kd45ygrd48bbx-scx-unstable-20240326-5bfd90bd6/bin/scx_lavd

flake.lock

       "locked": {
-        "lastModified": 1713212932,
-        "narHash": "sha256-FnKDhx5w9KRUJR0ZEI4kpL+KtAv2utAs6+ovDz1SmHo=",
+        "lastModified": 1713554347,
+        "narHash": "sha256-Li6DK5JqKesOhTBwSoqxWzOxUR0pcPxE/L7vVyEsZpM=",
         "owner": "chaotic-cx",
         "repo": "nyx",
-        "rev": "a2f034e707ad9e2be09454f171acd805015ae245",
+        "rev": "72c35184e8260a612b00977d0bb26d63cb385cb0",
         "type": "github"
       },

[Request] SurrealDB-nightly

Link to the package upstream website/repository

SurrealDB

Utility this package has for you

Nightly version of SurrealDB :)

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Bug] linux-cachyos iwlwifi crashes

What happens?

Sometimes iwlwifi crashes and I have no wireless network anymore. Seems to happen more often when using nixos rebuild or playing around with sched_ext.

reloading the module with sudo rmmod iwlmvm iwlwifi and sudo modprobe iwlmvm iwlwifi fixes the problem until the next crash

What is expected to happen?

Wifi working fine without any crashes.

If possible, please attach logs

Kernel logs are attached (crash is on the end of log).
system.log

More information

neofetch:

          ▗▄▄▄       ▗▄▄▄▄    ▄▄▄▖            ld@LD-Laptop 
          ▜███▙       ▜███▙  ▟███▛            ------------ 
           ▜███▙       ▜███▙▟███▛             OS: NixOS 24.05.20240425.7bb2ccd (Uakari) x86_64 
            ▜███▙       ▜██████▛              Host: ASUSTeK COMPUTER INC. FA506QM 
     ▟█████████████████▙ ▜████▛     ▟▙        Kernel: 6.8.7-cachyos 
    ▟███████████████████▙ ▜███▙    ▟██▙       Uptime: 1 hour, 23 mins 
           ▄▄▄▄▖           ▜███▙  ▟███▛       Packages: 2892 (nix-system), 1274 (nix-user) 
          ▟███▛             ▜██▛ ▟███▛        Shell: fish 3.7.1 
         ▟███▛               ▜▛ ▟███▛         Resolution: 1920x1080 
▟███████████▛                  ▟██████████▙   DE: Plasma 6.0.4 (Wayland) 
▜██████████▛                  ▟███████████▛   WM: kwin 
      ▟███▛ ▟▙               ▟███▛            Icons: Sweet-Red [GTK2/3] 
     ▟███▛ ▟██▙             ▟███▛             Terminal: kitty 
    ▟███▛  ▜███▙           ▝▀▀▀▀              Terminal Font: monospace 11.0 
    ▜██▛    ▜███▙ ▜██████████████████▛        CPU: AMD Ryzen 7 5800H with Radeon Graphics (16) @ 4.463GHz 
     ▜▛     ▟████▙ ▜████████████████▛         GPU: NVIDIA GeForce RTX 3060 Mobile / Max-Q 
           ▟██████▙       ▜███▙               GPU: AMD ATI Radeon Vega Series / Radeon Vega Mobile Series 
          ▟███▛▜███▙       ▜███▙              Memory: 8986MiB / 31492MiB 
         ▟███▛  ▜███▙       ▜███▙
         ▝▀▀▀    ▀▀▀▀▘       ▀▀▀▘                                     
                                                                      

Output of nix-shell -p nix-info --run "nix-info -m":

 - system: `"x86_64-linux"`
 - host os: `Linux 6.8.7-cachyos, NixOS, 24.05 (Uakari), 24.05.20240425.7bb2ccd`
 - multi-user?: `yes`
 - sandbox: `yes`
 - version: `nix-env (Nix) 2.18.2`
 - channels(root): `"nixos"`
 - nixpkgs: `/nix/store/370qy3d3wg9zhbn5a3dcv6k1q1iigfh4-source`

[Request] Distrobox-git

Link to the package upstream website/repository

https://github.com/89luca89/distrobox

Utility this package has for you

The current package in nixos is out of date and needs to be update to the latest git version

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Bug] Immortalis doesn't build 32-bit applications

What happens?

32-bit applications building fails when invoking "patch" during prepare.

What is expected to happen?

Similar to my local machine, they should successfully build.

If possible, please attach logs

error: builder for '/nix/store/i46wiqjfm8jshjb5bmqxfcrl6mlsgr2y-mesa-8b6b40.drv' failed with exit code 2;
       last 6 log lines:
       > unpacking sources
       > unpacking source archive /nix/store/yqq4qvar77f2ha7i60wa6vs9fbj8smja-source
       > source root is source
       > patching sources
       > applying patch /nix/store/q6a122idzfix30ffb10jfzl9p3h9793z-musl.patch
       > patch: **** out of memory
       For full logs, run 'nix log /nix/store/i46wiqjfm8jshjb5bmqxfcrl6mlsgr2y-mesa-8b6b40.drv'.

More information

No response

[Task] Deprecate `chaotic.gamescope`

What happens?

We have chaotic.gamescope.* module options that are (now) covered by the official options, which seems mature and stable.

What is expected to happen?

We have to make an alias with a warning, like official modules do.

[Request] linux_cachyos with bcachefs patch

Link to the package upstream website/repository

0001-bcachefs.patch

Utility this package has for you

Currently, I am using bcachefs. I would like to transition to using linux_cachyos on my system; however, I've encountered an issue. It seems that linux_cachyos does not support bcachefs. I'm requesting assistance with adding patches to the linux_cachyos packages to address this compatibility issue.

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request]

Link to the package upstream website/repository

asdsad

Utility this package has for you

asdsad

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

asdasd

[Request] cosmic epoch desktop

Link to the package upstream website/repository

https://github.com/pop-os/cosmic-epoch

Utility this package has for you

I think cosmic epoch has a big potential, and I really want to try it out. I know it is available in the chaotic AUR as well.
But I know it is one bigger task, so I would understand if its to much work to implement all the necessary packages.
But there is some interest on packaging the cosmic desktop in the nixos community:
NixOS/nixpkgs#199563
https://www.reddit.com/r/NixOS/comments/ulugik/how_to_install_poposs_cosmic_desktop_environment/
And other than that there is some work done already:
pop-os/cosmic-comp#53

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

No, but for a great amount.

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request] linux-cachyos-rc

Link to the package upstream website/repository

https://github.com/CachyOS/linux-cachyos/tree/master/linux-cachyos-rc

Utility this package has for you

It will be useful for those who want to test / try the linux-mainline version of cachyos.

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

No, but for a few.

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request] rust-nightly toolchain

Link to the package upstream website/repository

rust-nightly

Utility this package has for you

Rust toolchain without using a different flake/overlay (and with purity)

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

Could be based on this? https://github.com/nix-community/fenix

[Request] Jovian-NixOS

Link to the package upstream website/repository

Jovian-NixOS

Utility this package has for you

I use the packages and kernel provided by this flake for my steam deck!

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Bug] No i915 gallium driver on mesa-git

What happens?

When using mesa-git package on NixOS, there's no i915 gallium driver, defaulting to LLVMPipe on X.org

What is expected to happen?

Was expecting to have all drivers, since the source said "galliumDrivers = 'all' ", but it does not have the driver, I don't know why, but there is a workaround, which is compiling from source using a overlay.

If possible, please attach logs

No response

More information

I think it's pretty simple to "solve", since all we have to do is add "i915" on galliumDrivers, would be awesome to not have to compile on every single mesa_git update, since the driver is for mostly old pcs like mine, it will help others who want to try this package aswell.

[Bug] Issue running latencyflex from this repo

What happens?

I added this repo's source to my flake:

chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";

Then added latencyflex-vulkan to my packages:

environment.systemPackages = with pkgs; [ pkgs.inputs.chaotic.latencyflex-vulkan ];

Then I rebuilt and followed latencyflex nvapi instructions for proton.

What is expected to happen?

I should start Apex and be able to enable reflex.

If possible, please attach logs

steam-log-apex.log

More information

Since I wasn't sure if this was a latencyflex or nix issue, I also posted at:

ishitatsuyuki/LatencyFleX#45

[Bug] Error when updating my chaotic inputs.

What happens?

When i run nix flake lock --update-input chaotic i got this error.

❯ nix flake lock --update-input chaotic 
error:
       … while updating the lock file of flake 'git+file:///home/ludovico/.config/nixos?ref=refs/heads/flake-parts&rev=9e5fcc961fc468cf35be1dffa038d768d42a596c'

       … while updating the flake input 'chaotic'

       … while updating the flake input 'chaotic/beautyline-icons-git-src'

       … while fetching the input 'gitlab:garuda-linux/themes-and-settings/artwork/beautyline'

       error: unable to download 'https://gitlab.com/api/v4/projects/garuda-linux%2Fthemes-and-settings/repository/commits?ref_name=artwork/beautyline': HTTP error 404

       response body:

       {"message":"404 Project Not Found"}

What is expected to happen?

Chaotic should be updated without any errors.

If possible, please attach logs

No response

More information

My flake.nix is available here

[Request] open-webui

Link to the package upstream website/repository

open-webui

Utility this package has for you

I use it daily to run and test lots of llms locally. open-webui is feature rich and receives updates very frequently. Want to test them as soon as they're out. It's so fun.

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

It's the ultra popular web UI for ollama and OpenAI-compatible APIs. Used by many.

Add instructions for non-NixOS home-manager users

Hi, I still don't really get how to use flakes, I put in the flake configs in ~/.config/home-manager/flake.nix and I got the following output:

warning: creating lock file '/home/fenglengshun/.config/home-manager/flake.lock'
error: flake 'path:/home/fenglengshun/.config/home-manager' does not provide attribute 'packages.x86_64-linux.homeConfigurations', 'legacyPackages.x86_64-linux.homeConfigurations' or 'homeConfigurations'
error: flake 'path:/home/fenglengshun/.config/home-manager' does not provide attribute 'packages.x86_64-linux.homeConfigurations', 'legacyPackages.x86_64-linux.homeConfigurations' or 'homeConfigurations'
error: flake 'path:/home/fenglengshun/.config/home-manager' does not provide attribute 'packages.x86_64-linux.homeConfigurations."fenglengshun".activationPackage', 'legacyPackages.x86_64-linux.homeConfigurations."fenglengshun".activationPackage' or 'homeConfigurations."fenglengshun".activationPackage'

Currently, I only understand using import <channel>, builtins.fetchTarball, and builtins.fetchGit. Could an example for home-manager flake config be added please? Or maybe a simpler import set-up that could be added to instructions?

[Bug] New overlay mode doesn't respect nixpkgs' config

What happens?

After #138, having allowUnfree no longer affects unfree packages in this repository (like linuxPackages_cachyos.nvidia_*).

Reverting the behavior through the chaotic.nyx.overlay.onTopOf = "user-pkgs" solves it, but reduces the chances of cache hits.

What is expected to happen?

allowUnfree should affect it all, and cache should always hit.

Make linux-cachyos also part of pkgsx86_64_v3-core

Link to the package upstream website/repository

No external link.

Utility this package has for you

No response

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

As title says precompile and cache a linux-cachyos version for pkgsx86_64_v3-core. Since this would benefit like 99% of all nyx users (that use pkgsx86_64_v3-core cached packages).

[Bug] Kernel 6.8.1 bpf missing

What happens?

bpf is not loaded properly with kernel 6.8.1-cachyos-lto.

What is expected to happen?

Expect scx working properly. With kernel 6.8.0-cachyos-lto, it was working flawlessly.

If possible, please attach logs

 flake git:(master) ✗ ❯❯❯ sudo scx_rustland
libbpf: failed to find valid kernel BTF
libbpf: Error loading vmlinux BTF: -3
libbpf: failed to load object 'bpf_bpf'
libbpf: failed to load BPF skeleton 'bpf_bpf': -3
Error: Failed to load BPF program

Caused by:
    No such process (os error 3)
✖ 1 flake git:(master) ✗ ❯❯❯

More information

No response

Any help would be appreciated.

linux-cachyos: Scheduler not enabled by default

First of all, thank you for this flake!

I started using the linuxPackages_cachyos kernel. It seems that recently, the BORE scheduler is no longer enabled in the kernel config:

$ zgrep BORE /proc/config.gz
# CONFIG_SCHED_BORE is not set

$ sysctl kernel.sched_bore
sysctl: cannot stat /proc/sys/kernel/sched_bore: No such file or directory

My understanding is that the sysctl listed above should exist if the BORE scheduler is enabled. However I'm a bit confused as the patch defaults to Y here

Though it seems that the upstream cachyos PKGBUILDs are enabling this kernel config here when building the package (e.g makepkg).

I think the same needs to be done in the nix derivation somehow, and possibly other common config options too. The upstream patches used do not seem to do this by default.

This appears it may have stopped working after moving to linuxManualConfig in this PR: #76

[Bug] Home module disables cache.nixos.org

What happens?

Upon importing the home module, it creates the following at ~/.config/nix/nix.conf :

# WARNING: this file is generated from the nix.settings option in
# your Home Manager configuration at $XDG_CONFIG_HOME/nix/nix.conf.
# Do not edit it!
extra-substituters = https://nyx.chaotic.cx/
extra-trusted-public-keys = nyx.chaotic.cx-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8= chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8=
substituters = https://nyx.chaotic.cx/
trusted-public-keys = nyx.chaotic.cx-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8= chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8=

Which completely disables https://cache.nixos.org (despite it being configured system-wide at /etc/nix/nix.conf), as evidenced by nix show-config :

nix show-config | grep -i subst
builders-use-substitutes = false
max-substitution-jobs = 16
substitute = true
substituters = https://nyx.chaotic.cx/ # Where is https://cache.nixos.org ?

What is expected to happen?

The home module shouldn't override substituters.

If possible, please attach logs

No response

More information

No response

[Request] Instead of setting linux_cachyos, assert AMD_PRIVATE_COLOR for HDR

What happens?

Presently, chaotic.hdr sets kernel to linux_cachyos. But HDR has been merged into Linux 6.8, so this is not needed anymore. Instead, we want any 6.8+ kernel built with -DAMD_PRIVATE_COLOR in KCFLAGS.

What is expected to happen?

If the user has an LTS kernel, he should be warned that it does not support HDR, and advised to upgrade to either 6.8+ with AMD_PRIVATE_COLOR or linux_cachyos (needs rebuild with AMD_PRIVATE_COLOR rn).

[Bug] Configuration no longer builds since e10d6d1

What happens?

Since commit e10d6d1 from the other day my Nixos configuration flake will no longer build, and gives the following error:
error: Neither nixpkgs.system nor any other option in nixpkgs.* is meant
to be read by modules and configurations.
Use pkgs.stdenv.hostPlatform instead.
If I pin the flake input of the overlay to the commit prior a78f10f my configuration builds without issue.

What is expected to happen?

Configuration builds without any issues like before this commit.

If possible, please attach logs

Output of the build with --show-trace:
builderror.txt

More information

The base of my flake is from https://github.com/Misterio77/nix-starter-configs, so it might be something particular with the way that flake works, given I haven't seen this reported yet. Happy to provide more information if needed.

Thanks for maintaining this overlay! Having easy access to git versions of mesa and gamescope has been fantastic :)

[Request] picom - X11 Compositor

Link to the package upstream website/repository

picom

Utility this package has for you

picom stands out as the premier X11 compositor, boasting modern features and frequent updates. It'll be helpful to test/try it's new features and bug fixes as they're rolled out for staying at the forefront of customization and performance.

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

Github project (picom) already contains a flake.nix file.

[Request] firefox-nightly-wayland

Link to the package upstream website/repository

N/A

Utility this package has for you

Firefox but without x11 dependencies, so it's lighter :3

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Issue] Maintenance status

PRs are still welcome! Thank you.

What happens?

I'm sorry to announce that Chaotic-Nyx will be entering a maintenance hiatus.

I replaced our CI in such a way that all package bumps that don't break any other package will still be added to a PR. These daily bumps will keep going on. Others that are currently broken, like daily builds of Firefox Nightly and the latest Vulkan Tools will get automatically reverted in the same PR.

What is expected to happen?

Until Oct 11, I was doing daily bumps of all packages and trying to solve all the errors until the end of the day, so we would get daily releases. After 41 days, this proved unsustainable; as the number of packages increases, so does the time spent searching for what is wrong with the broken ones.

If possible, please attach logs

Firstly announced on https://t.me/s/chaotic_nyx/25 (Oct 16)

More information

I don't know when I'll have the time to fix those packages, as I tend to focus on newer projects that, I hope, can bring me some cash as I'm currently unemployed.

I need something

Buy PedroHLC a coffee, he doesn't mind returning the favor.

[Request] cachyos-hardened

Link to the package upstream website/repository

cachyos-hardened

Utility this package has for you

I like cachyos's scheduler, but I'd like to use hardened patches to keep my system secure

Do you consider the package(s) to be useful for every Chaotic-AUR user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request] Zed - Code Editor

Link to the package upstream website/repository

https://zed.dev/
https://github.com/zed-industries/zed

Utility this package has for you

Modern alternative to VS-Code that is not Vim ;)

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

It's a new code editor that got open-sourced recently. It's only available on MacOS BUT you can actually run it on Linux if you compile it from source. Since Nix is source-based I think it would be nice to have it here with most recent version from git.

[Request] firefox-nightly

Link to the package upstream website/repository

Firefox-Nightly

Utility this package has for you

Bleeding edge version of Firefox

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request] Enable intel xe kmd for mesa

Link to the package upstream website/repository

Hey it would be great if the intel xe kernel module support could be enabled for mesa.
I haven't investigated it any further but I believe adding "-Dintel-xe-kmd=enabled" to meson flags should do the trick.

Utility this package has for you

No response

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

No, but for a few.

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Request] cachyos-server

Link to the package upstream website/repository

cachyos-server

Utility this package has for you

I like cachyos kernel a lot, and would like to be able use it on servers (regular cachyos kernel is tailored for desktop/gaming more).

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Bug] microArchs dont apply nixpkgs config

What happens?

cant built unfree packages because the nixpkgs config does not get applied in the microarchs overlays
i think
this

onTopOfFlakeInputs =

does not get applied to them here

overlays = [

very dirtily fixed my issue at hand like that: df231f4 but thats obviously not fixing the issue but just workarounds a particular case

What is expected to happen?

flakeNixpkgs.config should apply to the whole overlay

If possible, please attach logs

No response

More information

No response

[Support Request] Sync scx to remote HEAD

What happens?

Recently, I met an issue where the scx program cannot work properly on my laptop with meteor lake CPU. It turns out that it has something to do with the recent changes the contributors made in the scx repo.

More context information available at sched-ext/scx#195

What is expected to happen?

Expect scx program works properly with meteor lake CPU.

If possible, please attach logs

⯁ ~ ❯❯❯ grep . /sys/devices/system/node/node*/cpu*/cache/index*/id
fish: No matches for wildcard '/sys/devices/system/node/node*/cpu*/cache/index*/id'. See `help wildcards-globbing`.
grep . /sys/devices/system/node/node*/cpu*/cache/index*/id
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^

More information

The contributor already fixed the issue, so requesting to sync upstream HEAD to include the fixes. Thanks in advance.

[Request] libopenraw

Link to the package upstream website/repository

https://libopenraw.freedesktop.org/
https://gitlab.freedesktop.org/libopenraw/libopenraw

Utility this package has for you

It's needed to build tauri v2 appimages

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

No, but for a few.

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

No response

[Grouping] mesa-git issues reporting

What happens?

I recently tried out gnome and gdm on my system. (I am on KDE wayland)
When I entered gdm there was only one session which was the X11 session with software rendering.
When I used sddm instead, I could enter the wayland session. Deactivating the mesa-git option resulted in both sessions appearing in gdm.

What is expected to happen?

The wayland session working out of gdm.

If possible, please attach logs

logs filtered by "gdm"

14:47:28 (sd-pam): pam_unix(systemd-user:session): session closed for user gdm
14:47:17 gdm: Gdm: Child process -1279 was already dead.
14:47:17 .gnome-shell-wr: Registering session with GDM
14:47:12 gdm-session-wor: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
14:47:06 .gnome-shell-wr: Registering session with GDM
14:47:03 .gnome-session-: WARNING: Desktop file /nix/store/690cq7xpw5kfxdcbfnq7cszsi1jhlj7v-gdm-44.1/share/gdm/greeter/autostart/orca-autostart.desktop for application orca-autostart.desktop could not be parsed or references a missing TryExec binary
14:47:01 systemd: Started Session c2 of User gdm.
14:47:01 systemd-logind: New session c2 of user gdm.
14:47:01 gdm: Gdm: Child process -1230 was already dead.
14:47:00 .gnome-session-: WARNING: Desktop file /nix/store/690cq7xpw5kfxdcbfnq7cszsi1jhlj7v-gdm-44.1/share/gdm/greeter/autostart/orca-autostart.desktop for application orca-autostart.desktop could not be parsed or references a missing TryExec binary
14:47:00 systemd: Started Session c1 of User gdm.
14:46:59 (systemd): pam_unix(systemd-user:session): session opened for user gdm(uid=132) by (uid=0)
14:46:59 systemd-logind: New session c1 of user gdm.

all logs since boot

14:47:46 systemd: systemd-hostnamed.service: Deactivated successfully.
14:47:38 .org.gnome.Char: JS LOG: Characters Application exiting
14:47:35 .gnome-shell-wr: Can't update stage views actor [:0x94da610] is on because it needs an allocation.
14:47:31 .dleyna-rendere: dLeyna: Exit
14:47:31 .gnome-logs-wra: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:31 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Logs'
14:47:31 .gnome-shell-wr: clutter_actor_set_mapped: assertion '!CLUTTER_ACTOR_IN_MAP_UNMAP (self)' failed
14:47:31 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.Logs' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:31 systemd: Started Virtual filesystem metadata service.
14:47:31 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.Metadata'
14:47:31 systemd: Starting Virtual filesystem metadata service...
14:47:31 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.88' (uid=1000 pid=3099 comm="/nix/store/9iz5kj6g3ay6i1bwfpl4fizigri2x6j5-tracke")
14:47:31 systemd: Started Tracker metadata extractor.
14:47:31 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.Tracker3.Miner.Extract'
14:47:30 .dleyna-rendere: Client :1.90 lost
14:47:30 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'com.intel.dleyna-renderer'
14:47:30 .dleyna-rendere: Entries: (null)
14:47:30 dbus-daemon: [session uid=1000 pid=1994] Activating service name='com.intel.dleyna-renderer' requested by ':1.90' (uid=1000 pid=3108 comm="/nix/store/vhnliac3knybijxfhfwsfbwpzlnhnn0i-gnome-")
14:47:30 cupsd: Saving subscriptions.conf...
14:47:30 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Photos'
14:47:30 systemd-timesyn: Initial clock synchronization to Tue 2023-08-15 14:47:29.762611 CEST.
14:47:29 .dleyna-rendere: dLeyna: Exit
14:47:29 .gnome-shell-wr: Error calling StartServiceByName for org.freedesktop.PackageKit: Failed to activate service 'org.freedesktop.PackageKit': timed out (service_start_timeout=25000ms)
14:47:29 dbus-daemon: [system] Failed to activate service 'org.freedesktop.PackageKit': timed out (service_start_timeout=25000ms)
14:47:29 systemd: Starting Tracker metadata extractor...
14:47:29 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Extract' unit='tracker-extract-3.service' requested by ':1.85' (uid=1000 pid=3020 comm="/nix/store/9iz5kj6g3ay6i1bwfpl4fizigri2x6j5-tracke")
14:47:28 .dleyna-rendere: Client :1.74 lost
14:47:28 systemd: Started Tracker file system data miner.
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.Tracker3.Miner.Files'
14:47:28 kernel: warning: `.dleyna-rendere' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
14:47:28 .dleyna-rendere: Calling GetRenderers method
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'com.intel.dleyna-renderer'
14:47:28 .dleyna-rendere: Entries: (null)
14:47:28 .kgx-wrapped: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Activating service name='com.intel.dleyna-renderer' requested by ':1.74' (uid=1000 pid=2698 comm="/nix/store/vhnliac3knybijxfhfwsfbwpzlnhnn0i-gnome-")
14:47:28 .kgx-wrapped: libEGL warning: DRI2: failed to authenticate
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Console'
14:47:28 .tracker-miner-: Path '/home/reini/Downloads' being removed from recursive directories list, as it also exists in single directories list
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.Console' requested by ':1.69' (uid=1000 pid=2688 comm="/nix/store/hfcwxhflln44z9bl8qsimwmakr9hxisv-nautil")
14:47:28 .nautilus-wrapp: Unable to get contents of the bookmarks file: Error opening file /home/reini/.gtk-bookmarks: No such file or directory
14:47:28 systemd: Starting Tracker file system data miner...
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.69' (uid=1000 pid=2688 comm="/nix/store/hfcwxhflln44z9bl8qsimwmakr9hxisv-nautil")
14:47:28 .org.gnome.Char: JS LOG: Characters Application started
14:47:28 systemd: Started Portal service.
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.portal.Desktop'
14:47:28 systemd: Stopped User Runtime Directory /run/user/132.
14:47:28 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
14:47:28 systemd: [email protected]: Deactivated successfully.
14:47:28 (sd-pam): pam_unix(systemd-user:session): session closed for user gdm
14:47:28 systemd: Reached target Exit the Session.
14:47:28 wireplumber: disconnected from pipewire
14:47:28 systemd: gamemoded.service: Failed with result 'exit-code'.
14:47:27 gamemoded: Successfully initialised bus with name [com.feralinteractive.GameMode]...
14:47:27 systemd: Stopped target Main User Target.
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.77' (uid=1000 pid=2842 comm="/nix/store/qjxkqzzxcj04f5j0jd2nlfj4sin5bzvm-xdg-de")
14:47:27 rtkit-daemon: Supervising 12 threads of 6 processes of 2 users.
14:47:27 systemd: Started Portal service (GNOME implementation).
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.impl.portal.desktop.gnome'
14:47:27 .epiphany-searc: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Epiphany.SearchProvider'
14:47:27 .xdg-desktop-po: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Photos'
14:47:27 .epiphany-searc: libEGL warning: DRI2: failed to authenticate
14:47:27 .nautilus-wrapp: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 systemd: Starting Portal service (GNOME implementation)...
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gnome' unit='xdg-desktop-portal-gnome.service' requested by ':1.77' (uid=1000 pid=2842 comm="/nix/store/qjxkqzzxcj04f5j0jd2nlfj4sin5bzvm-xdg-de")
14:47:27 systemd: Started flatpak document portal service.
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.portal.Documents'
14:47:27 systemd: Starting flatpak document portal service...
14:47:27 .nautilus-wrapp: libEGL warning: DRI2: failed to authenticate
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Nautilus'
14:47:27 .nautilus-wrapp: Connecting to org.freedesktop.Tracker3.Miner.Files
14:47:27 systemd: Started Bluetooth OBEX service.
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.bluez.obex'
14:47:27 obexd: OBEX daemon 5.66
14:47:27 .org.gnome.Char: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 systemd: Starting Bluetooth OBEX service...
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.71' (uid=1000 pid=2686 comm="/nix/store/5ygyvvny2vxzpl8z4zvmvkh94rdzsx6j-gnome-")
14:47:27 .org.gnome.Char: libEGL warning: DRI2: failed to authenticate
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Characters'
14:47:27 .gnome-clocks-w: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.seahorse.Application'
14:47:27 .gnome-control-: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:27 .gnome-shell-wr: Could not load a pixbuf from icon theme.
This may indicate that pixbuf loaders or the mime database could not be found.
14:47:27 .gnome-clocks-w: libEGL warning: DRI2: failed to authenticate
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.clocks'
14:47:27 org.gnome.Weath: Unhandled promise rejection. To suppress this warning, add an error handler to your promise chain with .catch() or a try-catch block around your await expression. Stack trace of the failed promise:
@/nix/store/9prxpafs6fb77mxdwf7ywa2951imbb8h-gnome-weather-44.0/share/org.gnome.Weather/org.gnome.Weather.BackgroundService:9:4
14:47:27 .gnome-control-: libEGL warning: DRI2: failed to authenticate
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Settings.SearchProvider'
14:47:27 .gnome-calculat: libEGL warning: DRI2: failed to authenticate
14:47:27 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.Epiphany.SearchProvider' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:26 .gnome-shell-wr: Window manager warning: Overwriting existing binding of keysym ffb3 with keysym ffb3 (keycode 59).
14:47:17 gdm: Gdm: Child process -1279 was already dead.
14:47:17 systemd-logind: Removed session c2.
14:47:17 systemd: session-c2.scope: Consumed 6.986s CPU time, no IP traffic.
14:47:17 X: (II) Server terminated successfully (0). Closing log file.
14:47:17 polkitd: Unregistered Authentication Agent for unix-session:c2 (system bus name :1.39, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
14:47:17 X: (II) systemd-logind: releasing fd for 13:72
14:47:17 .gsd-datetime-w: Error releasing name org.gnome.SettingsDaemon.Datetime: The connection is closed
14:47:17 .gnome-shell-wr: after 346 requests (345 known processed) with 0 events remaining.
14:47:17 .gsd-smartcard-: Error releasing name org.gnome.SettingsDaemon.Smartcard: The connection is closed
14:47:17 X: (II) systemd-logind: releasing fd for 13:69
14:47:17 .gsd-sharing-wr: Error releasing name org.gnome.SettingsDaemon.Sharing: The connection is closed
14:47:17 pipewire: mod.x11-bell: X11 display (:0) has encountered a fatal I/O error
14:47:17 .gsd-a11y-setti: Error releasing name org.gnome.SettingsDaemon.A11ySettings: The connection is closed
14:47:17 cupsd: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription client-error-not-found
14:47:17 .gnome-shell-wr: Shutting down GNOME Shell
14:47:16 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:16 X: (EE) libinput: ELAN1204:00 04F3:30B2 Mouse: Failed to set scroll to twofinger
14:47:16 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:16 systemd: GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/reini/.config/gnome-initial-setup-done).
14:47:16 .gsd-media-keys: Failed to grab accelerator for keybinding settings:playback-random
14:47:16 .gnome-shell-wr: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
14:47:16 .gsd-usb-protec: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.usbguard1 was not provided by any .service files
14:47:16 .gnome-shell-wr: JS ERROR: GSConnect: Gio.DBusError: Process org.gnome.Shell.Extensions.GSConnect exited with status 127
start/</<@/home/reini/.local/share/gnome-shell/extensions/[email protected]/utils/remote.js:456:51
14:47:16 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.ScreenSaver'
14:47:16 .evolution-alar: Failed to load module "window-decorations-gtk-module"
14:47:16 systemd: Reached target GNOME power management target.
14:47:16 cupsd: REQUEST localhost - - "POST / HTTP/1.1" 200 361 Create-Printer-Subscriptions successful-ok
14:47:16 systemd: Reached target GNOME color management target.
14:47:16 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.ScreenSaver' requested by ':1.53' (uid=1000 pid=2427 comm="/nix/store/8yhzfln9h22lnj3l7lfkyfv0xm8akirf-gnome-")
14:47:16 kernel: rfkill: input handler disabled
14:47:16 systemd: Reached target GNOME USB protection target.
14:47:16 dbus-daemon: [session uid=1000 pid=1994] Activated service 'org.gnome.Shell.Extensions.GSConnect' failed: Process org.gnome.Shell.Extensions.GSConnect exited with status 127
14:47:16 /usr/bin/env: /usr/bin/env: ‘gjs’: No such file or directory
14:47:16 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.Shell.Extensions.GSConnect' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:16 systemd: Reached target GNOME date & time target.
14:47:16 .gnome-shell-wr: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
14:47:16 .gnome-session-: Entering running state
14:47:15 systemd: Reached target GNOME accessibility target.
14:47:15 .gnome-shell-wr: st_widget_get_theme_node called on the widget [0x292b860 Gjs_ui_animation_Spinner:insensitive] which is not in the stage.
14:47:15 at-spi2-registr: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
14:47:15 dbus-daemon: dbus-daemon[2057]: Successfully activated service 'org.a11y.atspi.Registry'
14:47:15 .gnome-shell-wr: [extensions-sync] [extension] extension is enabled
14:47:15 systemd: Started Evolution address book service.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
14:47:15 systemd: Started User preferences database.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'ca.desrt.dconf'
14:47:15 systemd: Starting User preferences database...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Starting Evolution address book service...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.37' (uid=1000 pid=2329 comm="/nix/store/45n77731hd2mg2j3v2rga4xkjnjsl4lg-evolut")
14:47:15 systemd: Started Evolution calendar service.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
14:47:15 .gnome-shell-wr: Extension [email protected] already installed in /home/reini/.local/share/gnome-shell/extensions/[email protected]. /run/current-system/sw/share/gnome-shell/extensions/[email protected] will not be loaded
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Shell.CalendarServer'
14:47:15 systemd: Starting Evolution calendar service...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.21' (uid=1000 pid=2206 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Started Virtual filesystem service - GNOME Online Accounts monitor.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
14:47:15 systemd: Started Evolution source registry.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
14:47:15 .goa-daemon-wra: goa-daemon version 3.48.0 starting
14:47:15 systemd: Starting Virtual filesystem service - GNOME Online Accounts monitor...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Started Virtual filesystem service - Apple File Conduit monitor.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
14:47:15 systemd: Starting Virtual filesystem service - Apple File Conduit monitor...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Started Virtual filesystem service - digital camera monitor.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
14:47:15 systemd: Starting Virtual filesystem service - digital camera monitor...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Started Virtual filesystem service - Media Transfer Protocol monitor.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
14:47:15 systemd: Starting Virtual filesystem service - Media Transfer Protocol monitor...
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:15 systemd: Started Virtual filesystem service - disk device monitor.
14:47:15 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
14:47:15 wireplumber: WpPortalPermissionStorePlugin:0x1764bf0 Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera
14:47:15 bluetoothd: Endpoint registered: sender=:1.140 path=/MediaEndpoint/A2DPSource/opus_05_duplex
14:47:15 udisksd: Acquired the name org.freedesktop.UDisks2 on the system message bus
14:47:15 systemd: Started Disk Manager.
14:47:15 dbus-daemon: [system] Successfully activated service 'org.freedesktop.UDisks2'
14:47:15 udisksd: udisks daemon version 2.10.0 starting
14:47:15 systemd: Starting Disk Manager...
14:47:15 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.141' (uid=1000 pid=2268 comm="/nix/store/k10b8lrhsslsimd1p1ldf8f9vyhynch0-gvfs-1")
14:47:15 wireplumber: [0:00:21.822735635] [2227] �[1;32m INFO �[1;37mCamera �[1;34mcamera_manager.cpp:298 �[0mlibcamera v0.0.5
14:47:15 rtkit-daemon: Supervising 12 threads of 6 processes of 2 users.
14:47:14 systemd: Starting Virtual filesystem service - disk device monitor...
14:47:14 rtkit-daemon: Supervising 10 threads of 5 processes of 2 users.
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:14 rtkit-daemon: Supervising 9 threads of 5 processes of 2 users.
14:47:14 .gnome-shell-wr: Telepathy is not available, chat integration will be disabled.
14:47:14 polkitd: Registered Authentication Agent for unix-session:2 (system bus name :1.105 [/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-shell-44.3/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
14:47:14 rtkit-daemon: Supervising 8 threads of 4 processes of 2 users.
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gnome.Shell.Screencast'
14:47:14 rtkit-daemon: Supervising 7 threads of 4 processes of 2 users.
14:47:14 systemd: Started Multimedia Service Session Manager.
14:47:14 .org.gnome.Shel: libEGL warning: DRI2: failed to authenticate
14:47:14 systemd: Starting Evolution source registry...
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.21' (uid=1000 pid=2206 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:14 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:14 systemd: Started sandboxed app permission store.
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
14:47:14 systemd: Starting sandboxed app permission store...
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Activating service name='org.gnome.Shell.CalendarServer' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:14 .gnome-shell-wr: Will monitor session 2
14:47:14 .mutter-x11-fra: Unknown key gtk-modules in /home/reini/.config/gtk-4.0/settings.ini
14:47:14 systemd: Started Virtual filesystem service.
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.gtk.vfs.Daemon'
14:47:14 systemd: Starting Virtual filesystem service...
14:47:14 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.14' (uid=1000 pid=2118 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:13 X: (II) modeset(0): Modeline "1920x1080"x0.0 152.84 1920 1966 1996 2250 1080 1082 1086 1132 -hsync -vsync (67.9 kHz eP)
14:47:13 .gnome-shell-wr: Running GNOME Shell (using mutter 44.3) as a X11 window and compositing manager
14:47:13 systemd: Condition check resulted in GNOME Shell on Wayland being skipped.
14:47:13 .gnome-keyring-: discover_other_daemon: 1
14:47:13 systemd: Started Application launched by gnome-session-binary.
14:47:13 .gnome-keyring-: discover_other_daemon: 1
14:47:13 systemd: app-gnome-gnome\x2dkeyring\x2dpkcs11-2106.scope: Couldn't move process 2106 to requested cgroup '/user.slice/user-1000.slice/[email protected]/app.slice/app-gnome-gnome\x2dkeyring\x2dpkcs11-2106.scope': No such process
14:47:13 .gnome-keyring-: discover_other_daemon: 1
14:47:13 .gnome-session-: WARNING: Desktop file /home/reini/.config/autostart/thunderbird.desktop for application thunderbird.desktop could not be parsed or references a missing TryExec binary
14:47:13 systemd: Starting GNOME Session Manager (session: gnome)...
14:47:13 gnome-session-c: gnome-session-check-accelerated: GLES Helper exited with code 512
14:47:13 systemd: Started Accessibility services bus.
14:47:13 dbus-daemon: [session uid=1000 pid=1994] Successfully activated service 'org.a11y.Bus'
14:47:13 systemd: NetworkManager-dispatcher.service: Deactivated successfully.
14:47:13 dbus-daemon: [session uid=1000 pid=1994] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.3' (uid=1000 pid=2050 comm="/nix/store/jbqlanlfl4n0f4c88n94a5xp69wxff7z-gnome-")
14:47:13 X: (II) event5 - AT Translated Set 2 keyboard: device is a keyboard
14:47:13 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:13 X: () Option "xkb_options" "terminate:ctrl_alt_bksp"
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSource/opus_05_duplex
14:47:12 X: (II) LoadModule: "glx"
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSink/opus_05_duplex
14:47:12 X: (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 15 paused 0
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSink/opus_05
14:47:12 X: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSource/faststream
14:47:12 X: (++) using VT number 2
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSink/sbc
14:47:12 X: X.Org Server Extension : 10.0
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSource/aptx
14:47:12 X: (
) | |-->Monitor ""
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSink/aptx
14:47:12 X: XSERVTransMakeAllCOTSServerListeners: server already running
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSource/aptx_hd
14:47:12 .gsd-media-keys: Unable to get default sink
14:47:12 bluetoothd: Endpoint unregistered: sender=:1.61 path=/MediaEndpoint/A2DPSource/ldac
14:47:12 kernel: rfkill: input handler enabled
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Middle Emulation Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Tapping Drag Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Tapping Button Mapping Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Tapping Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Left Handed Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Left Handed Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 11 property "libinput Left Handed Enabled" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Natural Scrolling Enabled" with X error 8
14:47:12 X: (II) systemd-logind: got pause for 13:67
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 11 property "libinput Natural Scrolling Enabled" with X error 8
14:47:12 X: (II) systemd-logind: got pause for 13:71
14:47:12 .gnome-shell-wr: XIChangeProperty failed on device 10 property "libinput Accel Speed" with X error 8
14:47:12 X: This driver cannot change properties on a disabled device
14:47:12 gdm-session-wor: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
14:47:12 systemd: Startup finished in 163ms.
14:47:12 systemd-xdg-aut: /home/reini/.config/autostart/thunderbird.desktop: not generating unit, error parsing Exec= line: No such file or directory
14:47:12 (systemd): pam_unix(systemd-user:session): session opened for user reini(uid=1000) by (uid=0)
14:47:12 systemd: Starting User Manager for UID 1000...
14:47:12 systemd-logind: New session 2 of user reini.
14:47:12 systemd: Starting User Runtime Directory /run/user/1000...
14:47:11 gdm-session-wor: pam_unix(gdm-password:session): session opened for user reini(uid=1000) by (uid=0)
14:47:07 ModemManager: [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0': not supported by any plugin
14:47:06 .gnome-shell-wr: Registering session with GDM
14:47:06 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Successfully activated service 'org.gnome.Shell.Screencast'
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 wireplumber: WpPortalPermissionStorePlugin:0xc2a4e0 Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera
14:47:05 systemd: Started sandboxed app permission store.
14:47:05 dbus-daemon: [session uid=132 pid=1227] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
14:47:05 systemd: Starting sandboxed app permission store...
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 dbus-daemon: [session uid=132 pid=1227] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.9' (uid=132 pid=1677 comm="/nix/store/mgzzqba5rs1h4lca236wwnzq0dz4da03-wirepl")
14:47:05 bluetoothd: Endpoint registered: sender=:1.61 path=/MediaEndpoint/A2DPSource/opus_05_duplex
14:47:05 wireplumber: WpSiAudioAdapter:0x154a320 failed to activate item: Object activation aborted: proxy destroyed
14:47:05 kernel: Bluetooth: RFCOMM ver 1.11
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 X: (EE) libinput: ELAN1204:00 04F3:30B2 Mouse: Failed to set scroll to twofinger
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Successfully activated service 'org.gnome.ScreenSaver'
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 .gsd-media-keys: Failed to grab accelerator for keybinding settings:hibernate
14:47:05 kernel: NET: Registered PF_QIPCRTR protocol family
14:47:05 systemd: Started Modem Manager.
14:47:05 dbus-daemon: [system] Successfully activated service 'org.freedesktop.ModemManager1'
14:47:05 .gnome-shell-wr: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
14:47:05 .org.gnome.Shel: libEGL warning: DRI2: failed to authenticate
14:47:05 .gnome-session-: Entering running state
14:47:05 .gsd-sharing-wr: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
14:47:05 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
14:47:05 wireplumber: [0:00:11.999410319] [1677] �[1;32m INFO �[1;37mCamera �[1;34mcamera_manager.cpp:298 �[0mlibcamera v0.0.5
14:47:05 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Activating service name='org.freedesktop.systemd1' requested by ':1.17' (uid=132 pid=1773 comm="/nix/store/8yhzfln9h22lnj3l7lfkyfv0xm8akirf-gnome-")
14:47:05 .gnome-shell-wr: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
14:47:05 cupsd: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 ModemManager: ModemManager (version 1.20.6) starting in system bus...
14:47:05 xkbcomp: > Using last definition for conflicting fields
14:47:05 kernel: rfkill: input handler disabled
14:47:05 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:05 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Successfully activated service 'org.gnome.Shell.Notifications'
14:47:05 systemd: Starting Modem Manager...
14:47:05 .gnome-shell-wr: Window manager warning: Failed to parse saved session file: Failed to open file “/run/gdm/.config/mutter/sessions/1031c2a48f6f884444169210362320786200000012890000.ms”: No such file or directory
14:47:05 systemd: Started Location Lookup Service.
14:47:05 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.49' (uid=992 pid=1678 comm="/nix/store/9c6hv979hh09rhgd7bp6djghazgidzr2-geoclu")
14:47:04 systemd: Started Daemon for power management.
14:47:04 dbus-daemon: [system] Successfully activated service 'org.freedesktop.UPower'
14:47:04 systemd: Started PackageKit Daemon.
14:47:04 packagekitd: Failed to load the backend: opening module nix failed : /nix/store/xjd517rdiz66ys2mpin2plkriihjfwvv-packagekit-1.2.5.1pre/lib/packagekit-backend/libpk_backend_nix.so: cannot open shared object file: No such file or directory
14:47:04 at-spi2-registr: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
14:47:04 dbus-daemon: dbus-daemon[1302]: Successfully activated service 'org.a11y.atspi.Registry'
14:47:04 packagekitd: daemon quit
14:47:04 dbus-daemon: dbus-daemon[1302]: Activating service name='org.a11y.atspi.Registry' requested by ':1.2' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 packagekitd: daemon start
14:47:04 .geoclue-wrappe: Failed to open /etc/geoclue/conf.d/: Error opening directory “/etc/geoclue/conf.d/”: No such file or directory
14:47:04 rtkit-daemon: Supervising 6 threads of 3 processes of 1 users.
14:47:04 systemd: Starting PackageKit Daemon...
14:47:04 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Activating service name='org.gnome.Shell.Notifications' requested by ':1.5' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 rtkit-daemon: Supervising 5 threads of 3 processes of 1 users.
14:47:04 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.PackageKit' unit='packagekit.service' requested by ':1.39' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 rtkit-daemon: Supervising 4 threads of 3 processes of 1 users.
14:47:04 polkitd: Registered Authentication Agent for unix-session:c2 (system bus name :1.39 [/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-shell-44.3/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
14:47:04 rtkit-daemon: Supervising 3 threads of 3 processes of 1 users.
14:47:04 systemd: Started RealtimeKit Scheduling Policy Service.
14:47:04 dbus-daemon: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
14:47:04 systemd: Starting RealtimeKit Scheduling Policy Service...
14:47:04 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.45' (uid=132 pid=1676 comm="/nix/store/fc41pdbpb9q6j2ki7j54m50w882dnaql-pipewi")
14:47:04 systemd: Starting Location Lookup Service...
14:47:04 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.39' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 systemd: Started Multimedia Service Session Manager.
14:47:04 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.39' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 systemd: Started Locale Service.
14:47:04 dbus-daemon: [system] Successfully activated service 'org.freedesktop.locale1'
14:47:04 systemd: Starting Locale Service...
14:47:04 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.39' (uid=132 pid=1403 comm="/nix/store/52g417lfsn0n21898isd8jiakk3jqwwr-gnome-")
14:47:04 .gnome-shell-wr: Will monitor session c2
14:47:04 .mutter-x11-fra: libEGL warning: DRI2: failed to authenticate
14:47:03 .mullvad-daemon: [mullvad_relay_selector::updater][�[34mDEBUG�[0m] Relay list is up-to-date
14:47:03 systemd: Startup finished in 2.266s (firmware) + 5.696s (loader) + 3.158s (kernel) + 7.310s (userspace) = 18.432s.
14:47:03 tlp: Setting battery charge thresholds...done.
14:47:03 tlp: Applying power save settings...done.
14:47:03 .mullvad-daemon: [mullvad_api::availability][�[34mDEBUG�[0m] Unsuspending API requests
14:47:03 X: (II) modeset(0): Modeline "1920x1080"x0.0 152.84 1920 1966 1996 2250 1080 1082 1086 1132 -hsync -vsync (67.9 kHz eP)
14:47:03 .mullvad-daemon: [talpid_core::firewall::imp][�[34mDEBUG�[0m] Removing table and chain from netfilter
14:47:03 systemd: Starting TLP system startup/shutdown...
14:47:03 .gnome-shell-wr: Running GNOME Shell (using mutter 44.3) as a X11 window and compositing manager
14:47:03 systemd: Reached target Graphical Interface.
14:47:03 nsncd: Aug 15 14:47:03.219 INFO started, handoff_timeout: 3s, worker_count: 8, path: "/var/run/nscd/socket"
14:47:03 .gnome-session-: WARNING: Desktop file /nix/store/690cq7xpw5kfxdcbfnq7cszsi1jhlj7v-gdm-44.1/share/gdm/greeter/autostart/orca-autostart.desktop for application orca-autostart.desktop could not be parsed or references a missing TryExec binary
14:47:03 systemd: Starting Name Service Cache Daemon (nsncd)...
14:47:03 avahi-daemon: Registering new address record for 192.168.178.26 on wlp1s0.IPv4.
14:47:03 systemd: nscd.service: Consumed 59ms CPU time, received 0B IP traffic, sent 3.4K IP traffic.
14:47:03 gnome-session-c: gnome-session-check-accelerated: GLES Helper exited with code 512
14:47:03 wpa_supplicant: wlp1s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-49 noise=9999 txrate=866700
14:47:03 gnome-session-c: libEGL warning: DRI2: failed to authenticate
14:47:03 dbus-daemon: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
14:47:03 avahi-daemon: Registering new address record for fe80::3373:736f:f47b:4549 on wlp1s0.*.
14:47:03 wpa_supplicant: wlp1s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-49 noise=9999 txrate=6000
14:47:03 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
14:47:03 wpa_supplicant: wlp1s0: CTRL-EVENT-CONNECTED - Connection to 1c:ed:6f:09:b9:51 completed [id=0 id_str=]
14:47:03 gnome-session-c: gnome-session-check-accelerated: GL Helper exited with code 512
14:47:03 wpa_supplicant: wlp1s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
14:47:03 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Successfully activated service 'org.a11y.Bus'
14:47:03 wpa_supplicant: wlp1s0: WPS-CANCEL
14:47:03 dbus-daemon: dbus-daemon[1288]: [session uid=132 pid=1288] Activating service name='org.a11y.Bus' requested by ':1.0' (uid=132 pid=1294 comm="/nix/store/jbqlanlfl4n0f4c88n94a5xp69wxff7z-gnome-")
14:47:02 wpa_supplicant: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=DE
14:47:02 X: (II) event5 - AT Translated Set 2 keyboard: device is a keyboard
14:47:02 xkbcomp: Errors from xkbcomp are not fatal to the X server
14:47:02 X: (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
14:47:01 systemd: Started Session c2 of User gdm.
14:47:01 systemd-logind: New session c2 of user gdm.
14:47:01 gdm: Gdm: Child process -1230 was already dead.
14:47:01 systemd: session-c1.scope: Deactivated successfully.
14:47:01 gdm: Gdm: GdmDisplay: Session never registered, failing
14:47:01 dbus-daemon: dbus-daemon[1235]: [session uid=132 pid=1235] Activating service name='ca.desrt.dconf' requested by ':1.2' (uid=132 pid=1236 comm="/nix/store/jbqlanlfl4n0f4c88n94a5xp69wxff7z-gnome-")
14:47:01 .gnome-session-: Unrecoverable failure in required component org.gnome.Shell.desktop
14:47:01 .gnome-shell-wr: Failed to setup: No GPUs found
14:47:00 .gnome-shell-wr: Running GNOME Shell (using mutter 44.3) as a Wayland display server
14:47:00 kernel: NET: Registered PF_ALG protocol family
14:47:00 kernel: Bluetooth: MGMT ver 1.22
14:47:00 .gnome-session-: WARNING: Desktop file /nix/store/690cq7xpw5kfxdcbfnq7cszsi1jhlj7v-gdm-44.1/share/gdm/greeter/autostart/orca-autostart.desktop for application orca-autostart.desktop could not be parsed or references a missing TryExec binary
14:47:00 systemd: Startup finished in 312ms.
14:47:00 dbus-daemon: [session uid=132 pid=1227] Successfully activated service 'org.freedesktop.systemd1'
14:47:00 systemd: Started gamemoded.
14:46:59 kernel: memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1219 'systemd'
14:46:59 (systemd): pam_unix(systemd-user:session): session opened for user gdm(uid=132) by (uid=0)
14:46:59 systemd: Starting User Manager for UID 132...
14:46:59 avahi-daemon: Server startup complete. Host name is reini-nb.local. Local service cookie is 4090670362.
14:46:59 systemd: Finished User Runtime Directory /run/user/132.
14:46:59 systemd-logind: New session c1 of user gdm.
14:46:59 systemd-timesyn: Network configuration changed, trying to establish connection.
14:46:59 systemd: Starting User Runtime Directory /run/user/132...
14:46:59 wpa_supplicant: Successfully initialized wpa_supplicant
14:46:59 dbus-daemon: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
14:46:59 systemd: Starting WPA supplicant...
14:46:59 cupsd: REQUEST localhost - - "POST / HTTP/1.1" 200 176 Create-Printer-Subscriptions successful-ok
14:46:59 dbus-daemon: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.9' (uid=0 pid=1074 comm="/nix/store/x1lqwqk7vgpr0wmnasmfcjgcpr6xslij-networ")
14:46:59 systemd: Started Display Manager.
14:46:59 cupsd: REQUEST localhost - - "POST / HTTP/1.1" 200 349 Create-Printer-Subscriptions successful-ok
14:46:59 systemd: Started Manage, Install and Generate Color Profiles.
14:46:59 dbus-daemon: [system] Successfully activated service 'org.freedesktop.ColorManager'
14:46:59 systemd: Starting Manage, Install and Generate Color Profiles...
14:46:59 cupsd: Cleaning out old files in "/var/cache/cups".
14:46:59 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.12' (uid=0 pid=1166 comm="/nix/store/rxdd6nsrx5vbv7inw8qgcvy0r3qv8mfn-cups-2")
14:46:59 cupsd: No limit for Validate-Job defined in policy default and no suitable template found.
14:46:59 kernel: Did not update any PPD files
14:46:59 kernel: iwlwifi 0000:01:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
14:46:59 systemd-journal: /var/log/journal/b278cd1b8dfd4cc4adbe2c0295c1a1a4/user-1000.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
14:46:59 systemd: Reached target Login Prompts.
14:46:59 dbus-daemon: [system] Successfully activated service 'org.freedesktop.hostname1'
14:46:59 systemd: Starting Permit User Sessions...
14:46:59 accounts-daemon: started daemon version 23.13.9
14:46:59 polkitd: Acquired the name org.freedesktop.PolicyKit1 on the system bus
14:46:59 dbus-daemon: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
14:46:59 polkitd: Finished loading, compiling and executing 9 rules
14:46:59 (uetoothd): Bluetooth management interface 1.22 initialized
14:46:59 polkitd: Started polkitd version 122
14:46:59 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.7' (uid=0 pid=1076 comm="/nix/store/djs3mvn1fmwfhhk4s9p7sl37ks05rinn-bluez-")
14:46:59 kernel: Bluetooth: BNEP socket layer initialized
14:46:59 kernel: msr: See https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/about for details.
14:46:59 (uetoothd): src/plugin.c:plugin_init() Failed to init bap plugin
14:46:59 systemd: Reached target Bluetooth Support.
14:46:59 (uetoothd): Starting SDP server
14:46:59 systemd: Started Bluetooth service.
14:46:59 (uetoothd): Bluetooth daemon 5.66
14:46:59 systemd: Starting Authorization Manager...
14:46:59 dbus-daemon: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.4' (uid=0 pid=1016 comm="/nix/store/hjdf07z7i9ng829cdsl9pgd170r808cb-accoun")
14:46:59 systemd: Started CUPS Remote Printer Discovery.
14:46:59 (uetoothd): ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
14:46:59 systemd: Starting Bluetooth service...
14:46:59 kernel: Bluetooth: hci0: Found device firmware: intel/ibt-12-16.sfi
14:46:59 systemd: Starting Extra networking commands....
14:46:59 kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
14:46:59 dbus-daemon: [system] Successfully activated service 'org.freedesktop.systemd1'
14:46:59 kernel: Bluetooth: hci0: Bootloader revision 0.0 build 26 week 38 2015
14:46:59 kernel: usbcore: registered new interface driver btusb
14:46:59 systemd: Started D-Bus System Message Bus.
14:46:59 avahi-daemon: Registering new address record for 127.0.0.1 on lo.IPv4.
14:46:58 systemd: Started User Login Management.
14:46:58 systemd-logind: Watching system buttons on /dev/input/event5 (AT Translated Set 2 keyboard)
14:46:58 dbus-daemon: dbus[962]: Unknown group "netdev" in message bus configuration file
14:46:58 ananicy-cpp: [2023-08-15 14:46:58.965] [warning] Cgroups are not available on this platform (or are not enabled)
14:46:58 avahi-daemon: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
14:46:58 systemd: Starting Networking Setup...
14:46:58 dbus-daemon: dbus[962]: Unknown username "nm-openconnect" in message bus configuration file
14:46:58 systemd: Finished resolvconf update.
14:46:58 systemd-timesyn: Network configuration changed, trying to establish connection.
14:46:58 systemd: Starting User Login Management...
14:46:58 dbus-daemon: dbus[962]: Unknown group "netdev" in message bus configuration file
14:46:58 systemd: Reached target User and Group Name Lookups.
14:46:58 nsncd: Aug 15 14:46:58.915 INFO started, handoff_timeout: 3s, worker_count: 8, path: "/var/run/nscd/socket"
14:46:58 ananicy-cpp: Ananicy Cpp 1.1.0
14:46:58 systemd: Finished Logrotate configuration check.
14:46:58 logrotate: log does not need rotating ('minsize' directive is used and the log size is smaller than the minsize value)
14:46:58 systemd: Finished Store Sound Card State.
14:46:58 logrotate: warning: logrotate in debug mode does nothing except printing debug messages! Consider using verbose mode (-v) instead if this is not what you want.
14:46:58 systemd: Starting Intel Undervolting Service...
14:46:58 auditctl: No rules
14:46:58 systemd: Starting Virtual Machine and Container Registration Service...
14:46:58 kernel: Bluetooth: SCO socket layer initialized
14:46:58 kernel: NET: Registered PF_BLUETOOTH protocol family
14:46:58 kernel: Bluetooth: Core ver 2.22
14:46:58 l23mzyv7r9n305c: Persistent Storage backend was not registered in time.
14:46:58 kernel: iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
14:46:58 kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
14:46:58 systemd: Started Network Time Synchronization.
14:46:58 kernel: iwlwifi 0000:01:00.0: base HW address: b4:69:21:7a:01:d9, OTP minor version: 0x0
14:46:58 systemd: Finished Record System Boot/Shutdown in UTMP.
14:46:57 kernel: thermal thermal_zone6: failed to read out thermal zone (-61)
14:46:57 kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
14:46:57 systemd: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
14:46:57 kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input14
14:46:57 kernel: iwlwifi 0000:01:00.0: loaded firmware version 36.ca7b901d.0 8265-36.ucode op_mode iwlmvm
14:46:57 systemd: Reached target Local File Systems.
14:46:57 kernel: intel_tcc_cooling: Programmable TCC Offset detected
14:46:57 systemd: Finished Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight.
14:46:57 kernel: mousedev: PS/2 mouse device common for all mice
14:46:57 systemd: Mounted /boot/efi.
14:46:57 kernel: hid-multitouch 0018:04F3:30B2.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN1204:00 04F3:30B2] on i2c-ELAN1204:00
14:46:57 kernel: input: ELAN1204:00 04F3:30B2 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-ELAN1204:00/0018:04F3:30B2.0001/input/input10
14:46:57 kernel: snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
14:46:57 systemd: Mounting /boot/efi...
14:46:57 kernel: iwlwifi 0000:01:00.0: PCI dev 24fd/8110, rev=0x230, rfid=0xd55555d5
14:46:57 kernel: Intel(R) Wireless WiFi driver for Linux
14:46:57 kernel: ACPI: battery: new extension: ASUS Battery Extension
14:46:57 kernel: asus_wmi: fan_curve_get_factory_default (0x00110025) failed: -19
14:46:57 systemd: Finished File System Check on /dev/disk/by-uuid/3C90-F8B6.
14:46:57 kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
14:46:57 kernel: dw-apb-uart.2: ttyS4 at MMIO 0xef134000 (irq = 20, base_baud = 115200) is a 16550A
14:46:57 kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
14:46:57 fsck.vfat: /dev/sda1: 61 files, 40848/261627 clusters
14:46:57 kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input8
14:46:57 kernel: AES CTR mode by8 optimization enabled
14:46:57 kernel: AVX2 version of gcm_enc/dec engaged.
14:46:57 kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
14:46:57 kernel: intel_rapl_common: Found RAPL domain dram
14:46:57 kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
14:46:57 kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
14:46:57 kernel: asus_wmi: SFUN value: 0x21
14:46:57 kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
14:46:57 kernel: hid-generic 0018:04F3:30B2.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN1204:00 04F3:30B2] on i2c-ELAN1204:00
14:46:57 kernel: input: ELAN1204:00 04F3:30B2 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-ELAN1204:00/0018:04F3:30B2.0001/input/input7
14:46:57 systemd: Reached target Swaps.
14:46:57 kernel: Adding 8388604k swap on /dev/sda2. Priority:-2 extents:1 across:8388604k SSFS
14:46:57 systemd: Starting File System Check on /dev/disk/by-uuid/3C90-F8B6...
14:46:57 kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
14:46:57 kernel: iTCO_vendor_support: vendor-support=0
14:46:57 kernel: intel_rapl_common: Found RAPL domain psys
14:46:57 systemd: Created slice Slice /system/systemd-backlight.
14:46:57 kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
14:46:57 kernel: idma64 idma64.3: Found Intel integrated DMA 64-bit
14:46:57 kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
14:46:57 kernel: intel-lpss 0000:00:1e.2: enabling device (0000 -> 0002)
14:46:57 kernel: cryptd: max_cpu_qlen set to 1000
14:46:57 kernel: asus_wmi: ASUS WMI generic driver loaded
14:46:57 kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
14:46:57 kernel: intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
14:46:57 kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
14:46:57 systemd: Found device KINGSTON_SA400M8240G 2.
14:46:57 kernel: i2c i2c-6: 2/2 memory slots populated (from DMI)
14:46:57 kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
14:46:57 kernel: pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
14:46:57 kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
14:46:57 kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
14:46:57 kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
14:46:57 kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
14:46:57 kernel: mei_me 0000:00:16.0: enabling device (0004 -> 0006)
14:46:57 systemd: Found device KINGSTON_SA400M8240G 1.
14:46:57 kernel: BTRFS info: devid 1 device path /dev/disk/by-uuid/7042ba83-f28b-4e9d-b387-e259eb09f0b1 changed to /dev/sda3 scanned by (udev-worker) (645)
14:46:57 systemd: Finished Flush Journal to Persistent Storage.
14:46:57 kernel: Consider using thermal netlink events interface
14:46:57 systemd: Started Rule-based Manager for Device Events and Files.
14:46:57 systemd-modules: Inserted module 'uinput'
14:46:57 systemd-udevd: Using default interface naming scheme 'v253'.
14:46:57 systemd: Finished Load/Save OS Random Seed.
14:46:57 systemd-modules: Inserted module 'v4l2loopback'
14:46:57 systemd: Starting Rule-based Manager for Device Events and Files...
14:46:57 kernel: legion: probe of PNP0C09:01 failed with error -12
14:46:57 kernel: legion PNP0C09:01: legion_laptop not loaded for this device
14:46:57 kernel: Read identifying information: DMI_SYS_VENDOR: ASUSTeK COMPUTER INC.; DMI_PRODUCT_NAME: VivoBook S13 X330UA; DMI_BIOS_VERSION:X330UA.300
14:46:57 kernel: legion PNP0C09:01: Read identifying information: DMI_SYS_VENDOR: ASUSTeK COMPUTER INC.; DMI_PRODUCT_NAME: VivoBook S13 X330UA; DMI_BIOS_VERSION:X330UA.300
14:46:57 kernel: legion_laptop starts loading
14:46:57 systemd-journal: Rotating system journal.
14:46:57 kernel: v4l2loopback driver version 0.12.7 loaded
14:46:57 kernel: v4l2loopback: module verification failed: signature and/or required key missing - tainting kernel
14:46:57 kernel: videodev: Linux video capture interface: v2.00
14:46:57 systemd-journal: Received client request to flush runtime journal.
14:46:57 systemd: Starting Create Static Device Nodes in /dev...
14:46:57 kernel: mc: Linux media interface: v0.10
14:46:57 systemd: Starting Load/Save OS Random Seed...
14:46:57 systemd-modules: Module 'msr' is built in
14:46:57 kernel: loop: module loaded
14:46:57 systemd-modules: Inserted module 'loop'
14:46:57 kernel: tun: Universal TUN/TAP device driver, 1.6
14:46:57 systemd-modules: Inserted module 'tun'
14:46:57 systemd: Finished Coldplug All udev Devices.
14:46:57 systemd-modules: Inserted module 'macvlan'
14:46:57 kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
14:46:57 systemd-modules: Inserted module 'bridge'
14:46:57 systemd: Finished Remount Root and Kernel File Systems.
14:46:57 systemd-modules: Inserted module 'kvm_intel'
14:46:57 systemd: Finished Load Kernel Module fuse.
14:46:57 kernel: BTRFS warning (device sda3: state M): the 'inode_cache' option is deprecated and has no effect since 5.11
14:46:57 systemd: [email protected]: Deactivated successfully.
14:46:57 kernel: Started Journal Service.
14:46:57 kernel: Finished Load Kernel Module configfs.
14:46:57 systemd-journal: Runtime Journal (/run/log/journal/b278cd1b8dfd4cc4adbe2c0295c1a1a4) is 8.0M, max 194.8M, 186.8M free.
14:46:57 kernel: [email protected]: Deactivated successfully.
14:46:57 kernel: Finished Create List of Static Device Nodes.
14:46:57 systemd-journal: Collecting audit messages is disabled.
14:46:57 kernel: fuse: init (API version 7.38)
14:46:57 kernel: Mounted Kernel Debug File System.
14:46:57 kernel: Starting Coldplug All udev Devices...
14:46:57 kernel: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
14:46:57 kernel: Starting mount-pstore.service...
14:46:57 kernel: Mounting Kernel Debug File System...
14:46:57 kernel: Listening on udev Kernel Socket.
14:46:57 kernel: Reached target Slice Units.
14:46:57 kernel: Started Forward Password Requests to Wall Directory Watch.
14:46:57 kernel: Created slice User and Session Slice.
14:46:57 kernel: cgroup compatibility translation between legacy and unified hierarchy settings activated. See cgroup-compat debug messages for details.
14:46:57 kernel: Queued start job for default target Graphical Interface.
14:46:57 kernel: /etc/systemd/system/cups.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/cups/cups.sock → /run/cups/cups.sock; please update the unit file accordingly.
14:46:57 kernel: bpf-lsm: LSM BPF program attached
14:46:57 kernel: Detected architecture x86-64.
14:46:57 kernel: systemd 253.6 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
14:46:57 kernel: setting up /etc...
14:46:57 kernel: running activation script...
14:46:57 kernel: booting system configuration /nix/store/4z1vh8bpmp2v7can9mvcmmc0jcw98n70-nixos-system-reini-nb-23.11.20230814.6e28791
14:46:57 kernel: usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
14:46:57 kernel: BTRFS warning (device sda3: state M): the 'inode_cache' option is deprecated and has no effect since 5.11
14:46:57 kernel: [Tue Aug 15 12:46:55 UTC 2023] mounting /dev/disk/by-uuid/7042ba83-f28b-4e9d-b387-e259eb09f0b1 on /...
14:46:57 kernel: PM: Image not found (code -22)
14:46:57 kernel: [Tue Aug 15 12:46:55 UTC 2023] registered: /dev/sda3
14:46:57 kernel: BTRFS: device fsid 7042ba83-f28b-4e9d-b387-e259eb09f0b1 devid 1 transid 58611 /dev/sda3 scanned by btrfs (219)
14:46:57 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
14:46:57 kernel: [Tue Aug 15 12:46:55 UTC 2023] starting device mapper and LVM...
14:46:57 kernel: usb: port power management may be unreliable
14:46:57 kernel: hub 2-0:1.0: 6 ports detected
14:46:57 kernel: usb usb2: SerialNumber: 0000:00:14.0
14:46:57 kernel: hub 1-0:1.0: 12 ports detected
14:46:57 kernel: usb usb1: SerialNumber: 0000:00:14.0
14:46:57 kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
14:46:57 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
14:46:57 kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
14:46:57 kernel: [Tue Aug 15 12:46:54 UTC 2023] Starting systemd-udevd version 253.6
14:46:57 kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
14:46:57 kernel: [Tue Aug 15 12:46:54 UTC 2023] loading module dm_mod...
14:46:57 kernel: Btrfs loaded, zoned=yes, fsverity=yes
14:46:57 kernel: xor: using function: prefetch64-sse (23626 MB/sec)
14:46:57 kernel: generic_sse : 20276 MB/sec
14:46:57 kernel: xor: measuring software checksum speed
14:46:57 kernel: raid6: using avx2x2 recovery algorithm
14:46:57 kernel: [Tue Aug 15 12:46:54 UTC 2023] loading module btrfs...
14:46:57 kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
14:46:57 kernel: Console: switching to colour frame buffer device 240x67
14:46:57 kernel: fbcon: i915drmfb (fb0) is primary device
14:46:57 kernel: clocksource: Switched to clocksource tsc
14:46:57 kernel: tsc: Refined TSC clocksource calibration: 1800.000 MHz
14:46:57 kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
14:46:57 kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
14:46:57 kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 1
14:46:57 kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
14:46:57 kernel: Console: switching to colour dummy device 80x25
14:46:57 kernel: [Tue Aug 15 12:46:53 UTC 2023] loading module i915...
14:46:57 kernel: miggations=off
14:46:57 kernel: Run /init as init process
14:46:57 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
14:46:57 kernel: rodata_test: all tests were successful
14:46:57 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
14:46:57 kernel: Freeing unused kernel image (rodata/data gap) memory: 1764K
14:46:57 kernel: Write protecting the kernel read-only data: 32768k
14:46:57 kernel: Freeing unused kernel image (initmem) memory: 3496K
14:46:57 kernel: clk: Disabling unused clocks
14:46:57 kernel: sd 2:0:0:0: [sda] Attached SCSI disk
14:46:57 kernel: sda: sda1 sda2 sda3
14:46:57 kernel: sd 2:0:0:0: [sda] Preferred minimum I/O size 512 bytes
14:46:57 kernel: scsi 2:0:0:0: Direct-Access ATA KINGSTON SA400M8 62B3 PQ: 0 ANSI: 5
14:46:57 kernel: ata3.00: configured for UDMA/133
14:46:57 kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
14:46:57 kernel: RAS: Correctable Errors collector initialized.
14:46:57 kernel: PM: Magic number: 3:647:784
14:46:57 kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
14:46:57 kernel: Key type fscrypt-provisioning registered
14:46:57 kernel: zswap: loaded using pool zstd/zsmalloc
14:46:57 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 24b9e894fa196096e69ff0927e72a5224f34b9bb'
14:46:57 kernel: Loading compiled-in X.509 certificates
14:46:57 kernel: registered taskstats version 1
14:46:57 kernel: sched_clock: Marking stable (348001483, 6076056)->(383147948, -29070409)
14:46:57 kernel: IPI shorthand broadcast: enabled
14:46:57 kernel: microcode: Microcode Update Driver: v2.2.
14:46:57 kernel: NET: Registered PF_PACKET protocol family
14:46:57 kernel: In-situ OAM (IOAM) with IPv6
14:46:57 kernel: RPL Segment Routing with IPv6
14:46:57 kernel: Segment Routing with IPv6
14:46:57 kernel: Freeing initrd memory: 24736K
14:46:57 kernel: NET: Registered PF_INET6 protocol family
14:46:57 kernel: Initializing XFRM netlink socket
14:46:57 kernel: drop_monitor: Initializing network drop monitor service
14:46:57 kernel: intel_pmc_core INT33A1:00: initialized
14:46:57 kernel: hid: raw HID events driver (C) Jiri Kosina
14:46:57 kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
14:46:57 kernel: Console: switching to colour frame buffer device 100x37
14:46:57 kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
14:46:57 kernel: ledtrig-cpu: registered to indicate activity on CPUs
14:46:57 kernel: intel_pstate: HWP enabled
14:46:57 kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
14:46:57 kernel: usbserial: USB Serial support registered for generic
14:46:57 kernel: usbcore: registered new interface driver usbserial_generic
14:46:57 kernel: ACPI: bus type drm_connector registered
14:46:57 kernel: ata3: SATA max UDMA/133 abar m2048@0xef135000 port 0xef135200 irq 123
14:46:57 kernel: ata2: DUMMY
14:46:57 kernel: ata1: DUMMY
14:46:57 kernel: scsi host2: ahci
14:46:57 kernel: ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
14:46:57 kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
14:46:57 kernel: ACPI: battery: Slot [BAT0] (battery present)
14:46:57 kernel: Linux agpgart interface v0.103
14:46:57 kernel: Non-volatile memory driver v1.3
14:46:57 kernel: hpet_acpi_add: no address or irqs in CRS
14:46:57 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
14:46:57 kernel: ACPI: thermal: Thermal Zone [THRM] (65 C)
14:46:57 kernel: thermal LNXTHERM:00: registered as thermal_zone0
14:46:57 kernel: ACPI: button: Power Button [PWRF]
14:46:57 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
14:46:57 kernel: ACPI: button: Power Button [PWRB]
14:46:57 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
14:46:57 kernel: ACPI: button: Sleep Button [SLPB]
14:46:57 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
14:46:57 kernel: ACPI: button: Lid Switch [LID]
14:46:57 kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:19/PNP0C09:01/PNP0C0D:00/input/input0
14:46:57 kernel: ACPI: AC: AC Adapter [AC0] (off-line)
14:46:57 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
14:46:57 kernel: pcieport 0000:00:1c.0: AER: enabled with IRQ 122
14:46:57 kernel: BFQ I/O-scheduler: BFQ-CachyOS v6.4 (with cgroups support)
14:46:57 kernel: io scheduler bfq registered
14:46:57 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
14:46:57 kernel: Asymmetric key parser 'x509' registered
14:46:57 kernel: Key type asymmetric registered
14:46:57 kernel: integrity: Machine keyring initialized
14:46:57 kernel: zbud: loaded
14:46:57 kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
14:46:57 kernel: Key type blacklist registered
14:46:57 kernel: Initialise system trusted keyrings
14:46:57 kernel: Trying to unpack rootfs image as initramfs...
14:46:57 kernel: software IO TLB: mapped [mem 0x000000008a5ae000-0x000000008e5ae000] (64MB)
14:46:57 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
14:46:57 kernel: DMAR: ACPI device "device:74" under DMAR at fed91000 as 00:1e.0
14:46:57 kernel: PCI: CLS 64 bytes, default 64
14:46:57 kernel: pci_bus 0000:01: resource 1 [mem 0xef000000-0xef0fffff]
14:46:57 kernel: pci 0000:00:1c.0: bridge window [mem 0xef000000-0xef0fffff]
14:46:57 kernel: NET: Registered PF_XDP protocol family
14:46:57 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
14:46:57 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
14:46:57 kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
14:46:57 kernel: TCP: Hash tables configured (established 65536 bind 65536)
14:46:57 kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
14:46:57 kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
14:46:57 kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
14:46:57 kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
14:46:57 kernel: NET: Registered PF_INET protocol family
14:46:57 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
14:46:57 kernel: pnp: PnP ACPI: found 8 devices
14:46:57 kernel: system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
14:46:57 kernel: pnp: PnP ACPI init
14:46:57 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
14:46:57 kernel: clocksource: Switched to clocksource tsc-early
14:46:57 kernel: vgaarb: loaded
14:46:57 kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
14:46:57 kernel: e820: reserve RAM buffer [mem 0x25f000000-0x25fffffff]
14:46:57 kernel: PCI: pci_cache_line_size set to 64 bytes
14:46:57 kernel: NET: Registered PF_MCTP protocol family
14:46:57 kernel: mctp: management component transport protocol core
14:46:57 kernel: NetLabel: unlabeled traffic allowed by default
14:46:57 kernel: efivars: Registered efivars operations
14:46:57 kernel: EDAC MC: Ver: 3.0.0
14:46:57 kernel: PTP clock support registered
14:46:57 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti [email protected]
14:46:57 kernel: usbcore: registered new device driver usb
14:46:57 kernel: ACPI: bus type USB registered
14:46:57 kernel: libata version 3.00 loaded.
14:46:57 kernel: SCSI subsystem initialized
14:46:57 kernel: iommu: DMA domain TLB invalidation policy: lazy mode
14:46:57 kernel: ACPI: _SB
.PCI0.LPCB.EC0
: EC: Used to handle transactions and events
14:46:57 kernel: Low-power S0 idle used by default for system suspend
14:46:57 kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
14:46:57 kernel: pci 0000:00:1c.0: bridge window [mem 0xef000000-0xef0fffff]
14:46:57 kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
14:46:57 kernel: PCI host bridge to bus 0000:00
14:46:57 kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
14:46:57 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
14:46:57 kernel: PCI: Using E820 reservations for host bridge windows
14:46:57 kernel: ACPI: Using IOAPIC for interrupt routing
14:46:57 kernel: fbcon: Taking over console
14:46:57 kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
14:46:57 kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
14:46:57 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
14:46:57 kernel: PCI: Using configuration type 1 for base access
14:46:57 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
14:46:57 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
14:46:57 kernel: cpuidle: using governor menu
14:46:57 kernel: thermal_sys: Registered thermal governor 'power_allocator'
14:46:57 kernel: audit: type=2000 audit(1692103612.014:1): state=initialized audit_enabled=0 res=1
14:46:57 kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
14:46:57 kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
14:46:57 kernel: PM: RTC time: 12:46:53, date: 2023-08-15
14:46:57 kernel: pinctrl core: initialized pinctrl subsystem
14:46:57 kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
14:46:57 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 3822520892550000 ns
14:46:57 kernel: ACPI: PM: Registering ACPI NVS region [mem 0x99d39000-0x9a153fff] (4304896 bytes)
14:46:57 kernel: x86/mm: Memory block size: 128MB
14:46:57 kernel: devtmpfs: initialized
14:46:57 kernel: smpboot: Total of 8 processors activated (28800.00 BogoMIPS)
14:46:57 kernel: smp: Brought up 1 node, 8 CPUs
14:46:57 kernel: #5 #6 #7
14:46:57 kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
14:46:57 kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
14:46:57 kernel: #2 #3 #4
14:46:57 kernel: [Firmware Bug]: TSC ADJUST differs within socket(s), fixing all errors
14:46:57 kernel: .... node #0, CPUs: #1
14:46:57 kernel: x86: Booting SMP configuration:
14:46:57 kernel: smp: Bringing up secondary CPUs ...
14:46:57 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
14:46:57 kernel: rcu: Max phase no-delay instances is 800.
14:46:57 kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1934
14:46:57 kernel: signal: max sigframe size: 2032
14:46:57 kernel: ... event mask: 000000070000000f
14:46:57 kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
14:46:57 kernel: cblist_init_generic: Setting shift to 3 and lim to 1.
14:46:57 kernel: smpboot: CPU0: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz (family: 0x6, model: 0x8e, stepping: 0xa)
14:46:57 kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
14:46:57 kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
14:46:57 kernel: LSM support for eBPF active
14:46:57 kernel: Yama: becoming mindful.
14:46:57 kernel: landlock: Up and running.
14:46:57 kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
14:46:57 kernel: pid_max: default: 32768 minimum: 301
14:46:57 kernel: Freeing SMP alternatives memory: 48K
14:46:57 kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
14:46:57 kernel: GDS: Mitigation: Microcode
14:46:57 kernel: SRBDS: Mitigation: Microcode
14:46:57 kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
14:46:57 kernel: MDS: Mitigation: Clear CPU buffers
14:46:57 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
14:46:57 kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
14:46:57 kernel: RETBleed: Mitigation: IBRS
14:46:57 kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
14:46:57 kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
14:46:57 kernel: process: using mwait in idle threads
14:46:57 kernel: CPU0: Thermal monitoring enabled (TM1)
14:46:57 kernel: x86/cpu: SGX disabled by BIOS.
14:46:57 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3600.00 BogoMIPS (lpj=3600000)
14:46:57 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x19f2297dd97, max_idle_ns: 440795236593 ns
14:46:57 kernel: Switched APIC routing to cluster x2apic.
14:46:57 kernel: x2apic enabled
14:46:57 kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
14:46:57 kernel: DMAR: ANDD device: 9 name: _SB.PCI0.UA00
14:46:57 kernel: APIC: Switch to symmetric I/O mode setup
14:46:57 kernel: hpet: HPET dysfunctional in PC10. Force disabled.
14:46:57 kernel: ACPI: Core revision 20230331
14:46:57 kernel: printk: console [tty0] enabled
14:46:57 kernel: Console: colour dummy device 80x25
14:46:57 kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(ptrval)-0x(ptrval)
14:46:57 kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
14:46:57 kernel: NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
14:46:57 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
14:46:57 kernel: Tracing variant of Tasks RCU enabled.
14:46:57 kernel: Rude variant of Tasks RCU enabled.
14:46:57 kernel: Trampoline variant of Tasks RCU enabled.
14:46:57 kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
14:46:57 kernel: Dynamic Preempt: full
14:46:57 kernel: BORE (Burst-Oriented Response Enhancer) CPU Scheduler modification 3.1.0 by Masahito Suzuki
14:46:57 kernel: ftrace: allocated 177 pages with 4 groups
14:46:57 kernel: Kernel/User page tables isolation: enabled
14:46:57 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
14:46:57 kernel: Memory: 7847436K/8237460K available (18432K kernel code, 2132K rwdata, 12572K rodata, 3496K init, 3716K bss, 389764K reserved, 0K cma-reserved)
14:46:57 kernel: software IO TLB: area num 8.
14:46:57 kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
14:46:57 kernel: Policy zone: Normal
14:46:57 kernel: Built 1 zonelists, mobility grouping on. Total pages: 2027029
14:46:57 kernel: Fallback order for Node 0: 0
14:46:57 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
14:46:57 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
14:46:57 kernel: Unknown kernel command line parameters "miggations=off", will be passed to user space.
14:46:57 kernel: Kernel command line: initrd=\efi\nixos\vcr3lsf4gyrazyg6zgnjvxcbj71jdm52-initrd-linux-6.4.10-initrd.efi init=/nix/store/4z1vh8bpmp2v7can9mvcmmc0jcw98n70-nixos-system-reini-nb-23.11.20230814.6e28791/init miggations=off resume=/dev/disk/by-uuid/fe9c8981-906e-4078-8640-b543f1e76d13 systemd.unified_cgroup_hierarchy=0 loglevel=4
14:46:57 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
14:46:57 kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
14:46:57 kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
14:46:57 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 3821924579961850 ns
14:46:57 kernel: Booting paravirtualized kernel on bare hardware
14:46:57 kernel: [mem 0xa0000000-0xfdffffff] available for PCI devices
14:46:57 kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
14:46:57 kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
14:46:57 kernel: TSC deadline timer available
14:46:57 kernel: e820: update [mem 0x964a5000-0x964d3fff] usable ==> reserved
14:46:57 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
14:46:57 kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
14:46:57 kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
14:46:57 kernel: Reserving Intel graphics memory at [mem 0x9c000000-0x9fffffff]
14:46:57 kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
14:46:57 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000025effffff]
14:46:57 kernel: node 0: [mem 0x0000000100000000-0x000000025effffff]
14:46:57 kernel: Early memory node ranges
14:46:57 kernel: Movable zone start for each node
14:46:57 kernel: Device empty
14:46:57 kernel: Zone ranges:
14:46:57 kernel: NODE_DATA(0) allocated [mem 0x25effb000-0x25effffff]
14:46:57 kernel: Faking a node at [mem 0x0000000000000000-0x000000025effffff]
14:46:57 kernel: No NUMA configuration found
14:46:57 kernel: ACPI: Reserving WSMT table memory at [mem 0x99d38410-0x99d38437]
14:46:57 kernel: RAMDISK: [mem 0x8e5c6000-0x8fdedfff]
14:46:57 kernel: Secure boot disabled
14:46:57 kernel: Using GB pages for direct mapping
14:46:57 kernel: e820: update [mem 0x965a7000-0x965a7fff] usable ==> reserved
14:46:57 kernel: esrt: Reserving ESRT space from 0x00000000965a7c98 to 0x00000000965a7cd0.
14:46:57 kernel: last_pfn = 0x9a7ff max_arch_pfn = 0x400000000
14:46:57 kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
14:46:57 kernel: last_pfn = 0x25f000 max_arch_pfn = 0x400000000
14:46:57 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
14:46:57 kernel: [Firmware Bug]: TSC ADJUST: CPU0: -569378487 force to 0
14:46:57 kernel: tsc: Detected 1800.000 MHz processor
14:46:57 kernel: DMI: ASUSTeK COMPUTER INC. VivoBook S13 X330UA/X330UA, BIOS X330UA.300 09/07/2018
14:46:57 kernel: SMBIOS 3.1.1 present.
14:46:57 kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
14:46:57 kernel: efi: Remove mem34: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
14:46:57 kernel: e820: remove [mem 0xf0000000-0xf7ffffff] reserved
14:46:57 kernel: efi: Remove mem29: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
14:46:57 kernel: random: crng init done
14:46:57 kernel: efi: TPMFinalLog=0x9a123000 ACPI 2.0=0x99cff000 ACPI=0x99cff000 SMBIOS=0x9a568000 SMBIOS 3.0=0x9a567000 ESRT=0x965a7c98 RNG=0x99cfef18 INITRD=0x91618618 TPMEventLog=0x8e5bf018
14:46:57 kernel: reserve setup_data: [mem 0x0000000100000000-0x000000025effffff] usable
14:46:57 kernel: extended physical RAM map:
14:46:57 kernel: e820: update [mem 0x8e5ae018-0x8e5be057] usable ==> usable
14:46:57 kernel: NX (Execute Disable) protection: active
14:46:57 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000025effffff] usable
14:46:57 kernel: BIOS-provided physical RAM map:
14:46:57 kernel: Command line: initrd=\efi\nixos\vcr3lsf4gyrazyg6zgnjvxcbj71jdm52-initrd-linux-6.4.10-initrd.efi init=/nix/store/4z1vh8bpmp2v7can9mvcmmc0jcw98n70-nixos-system-reini-nb-23.11.20230814.6e28791/init miggations=off resume=/dev/disk/by-uuid/fe9c8981-906e-4078-8640-b543f1e76d13 systemd.unified_cgroup_hierarchy=0 loglevel=4
14:46:57 kernel: Linux version 6.4.10-cachyos (nixbld@localhost) (gcc (GCC) 12.3.0, GNU ld (GNU Binutils) 2.40) #1-NixOS SMP PREEMPT_DYNAMIC Fri Aug 11 10:14:29 UTC 2023
14:46:57 kernel: microcode: updated early: 0x96 -> 0xf4, date = 2023-02-23

More information

I am using a skylake notebook with the i915 driver in early kms. My desktop PC with AMDGPU is experiencing the same behavier.

[Request] ollama

Link to the package upstream website/repository

ollama

Utility this package has for you

Run latest models, checkout bug fixes and features as soon as they're released. Some models require additional programming for them to work. Ollama receives updates frequently, yet its version in Nixpkgs often lags far behind, making it difficult to test out new changes and hardware support.

Do you consider the package(s) to be useful for every Chaotic-Nyx user?

YES!

Do you consider the package to be useful for feature testing/preview?

  • Yes

Are you sure the package isn't available upstream already?

  • Yes

Does the package's license allow redistributing it?

YES!

Have you searched the issues to ensure this request is unique?

  • YES!

Have you read the README to ensure this package is not banned?

  • YES!

More information

It's the ultra popular client to serve llms locally. Used by many.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.