meow
This commit is contained in:
parent
96a0525a9f
commit
ffcba7c509
2 changed files with 16 additions and 4 deletions
10
flake.nix
10
flake.nix
|
|
@ -53,10 +53,11 @@
|
|||
|
||||
# Per-system configuration
|
||||
perSystem =
|
||||
{ config
|
||||
, pkgs
|
||||
, lib
|
||||
, ...
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
# Configure treefmt
|
||||
|
|
@ -193,6 +194,7 @@
|
|||
cutie = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
./packages/fix-pkg-config.nix
|
||||
./hosts/cutie/configuration.nix
|
||||
inputs.gnome-mobile.nixosModules.gnome-mobile
|
||||
inputs.nix-flatpak.nixosModules.nix-flatpak
|
||||
|
|
|
|||
10
packages/fix-pkg-config.nix
Normal file
10
packages/fix-pkg-config.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
libevdev = prev.libevdev.overrideAttrs (old: {
|
||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ prev.pkg-config ];
|
||||
});
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue