forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'system76-firmware-and-nixos' into master
- Loading branch information
Showing
8 changed files
with
146 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ config, lib, pkgs, ... }: | ||
|
||
let | ||
inherit (lib) mkOption mkEnableOption types mkIf mkMerge optional versionOlder; | ||
cfg = config.hardware.system76; | ||
|
||
kpkgs = config.boot.kernelPackages; | ||
modules = [ "system76" "system76-io" ] ++ (optional (versionOlder kpkgs.kernel.version "5.5") "system76-acpi"); | ||
modulePackages = map (m: kpkgs.${m}) modules; | ||
moduleConfig = mkIf cfg.kernel-modules.enable { | ||
boot.extraModulePackages = modulePackages; | ||
|
||
boot.kernelModules = modules; | ||
|
||
services.udev.packages = modulePackages; | ||
}; | ||
|
||
firmware-pkg = pkgs.system76-firmware; | ||
firmwareConfig = mkIf cfg.firmware-daemon.enable { | ||
services.dbus.packages = [ firmware-pkg ]; | ||
|
||
systemd.services.system76-firmware-daemon = { | ||
description = "The System76 Firmware Daemon"; | ||
|
||
serviceConfig = { | ||
ExecStart = "${firmware-pkg}/bin/system76-firmware-daemon"; | ||
|
||
Restart = "on-failure"; | ||
}; | ||
|
||
wantedBy = [ "multi-user.target" ]; | ||
}; | ||
}; | ||
in { | ||
options = { | ||
hardware.system76 = { | ||
enableAll = mkEnableOption "all recommended configuration for system76 systems"; | ||
|
||
firmware-daemon.enable = mkOption { | ||
default = cfg.enableAll; | ||
example = true; | ||
description = "Whether to enable the system76 firmware daemon"; | ||
type = types.bool; | ||
}; | ||
|
||
kernel-modules.enable = mkOption { | ||
default = cfg.enableAll; | ||
example = true; | ||
description = "Whether to make the system76 out-of-tree kernel modules available"; | ||
type = types.bool; | ||
}; | ||
}; | ||
}; | ||
|
||
config = mkMerge [ moduleConfig firmwareConfig ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
pkgs/os-specific/linux/firmware/firmware-manager/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ rustPlatform, lib, fetchFromGitHub, lzma, pkgconfig, openssl, dbus, glib, udev, cairo, pango, atk, gdk-pixbuf, gtk3, wrapGAppsHook }: | ||
rustPlatform.buildRustPackage rec { | ||
pname = "firmware-manager"; | ||
version = "0.1.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "pop-os"; | ||
repo = pname; | ||
rev = version; | ||
sha256 = "0x9604jsflqxvbkfp139mzjicpyx8v21139jj8bp88c14ngvmdlw"; | ||
}; | ||
|
||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; | ||
|
||
buildInputs = [ lzma openssl dbus glib udev cairo pango atk gdk-pixbuf gtk3 ]; | ||
|
||
depsExtraArgs.postPatch = "make prefix='$(out)' toml-gen"; | ||
|
||
postPatch = '' | ||
sed -i 's|etc|$(prefix)/etc|' Makefile | ||
''; | ||
|
||
buildPhase = "make prefix='$(out)'"; | ||
|
||
installPhase = "make prefix='$(out)' install"; | ||
|
||
cargoSha256 = "0byc0pqa1w2qnfrx3psrzdq1c8qjslbmzxg872b9v6fr5d4c9cvg"; | ||
|
||
doCheck = false; | ||
|
||
meta = { | ||
description = "Graphical frontend for firmware management"; | ||
homepage = "https://github.com/pop-os/firmware-manager"; | ||
license = lib.licenses.gpl3; | ||
maintainers = [ lib.maintainers.shlevy ]; | ||
platforms = lib.platforms.linux; | ||
}; | ||
} |
39 changes: 39 additions & 0 deletions
39
pkgs/os-specific/linux/firmware/system76-firmware/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ rustPlatform, lib, fetchFromGitHub, lzma, pkgconfig, openssl, dbus, efibootmgr, makeWrapper }: | ||
rustPlatform.buildRustPackage rec { | ||
pname = "system76-firmware"; | ||
# Check Makefile when updating, make sure postInstall matches make install | ||
version = "1.0.17"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "pop-os"; | ||
repo = pname; | ||
rev = version; | ||
sha256 = "0cnrskfk3sam90lfpgsraqs4bx9yz8rxhwfs8rxdri04lakxgghg"; | ||
}; | ||
|
||
nativeBuildInputs = [ pkgconfig makeWrapper ]; | ||
|
||
buildInputs = [ lzma openssl dbus ]; | ||
|
||
cargoBuildFlags = [ "--workspace" ]; | ||
|
||
cargoSha256 = "06jrmxy68glcmbn9px29wc0s8pqdn26iy4jn3c246dapv1zvbb4s"; | ||
|
||
# Purposefully don't install systemd unit file, that's for NixOS | ||
postInstall = '' | ||
install -D -m -0644 data/system76-firmware-daemon.conf $out/etc/dbus-1/system.d/system76-firmware-daemon.conf | ||
for bin in $out/bin/system76-firmware-* | ||
do | ||
wrapProgram $bin --prefix PATH : "${efibootmgr}/bin" | ||
done | ||
''; | ||
|
||
meta = { | ||
description = "Tools for managing firmware updates for system76 devices."; | ||
homepage = "https://github.com/pop-os/system76-firmware"; | ||
license = lib.licenses.gpl3; | ||
maintainers = [ lib.maintainers.shlevy ]; | ||
platforms = lib.platforms.linux; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters