Skip to content

Instantly share code, notes, and snippets.

@telent
Created March 24, 2022 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save telent/84652bf9a5bcd56dd5327339d001c16f to your computer and use it in GitHub Desktop.
Save telent/84652bf9a5bcd56dd5327339d001c16f to your computer and use it in GitHub Desktop.
{ config, lib, pkgs, ... }:
let
inherit (lib) mkForce;
in
{
imports =
let mobile = fetchTarball {
name = "mobile-nixos";
url = "https://codeload.github.com/NixOS/mobile-nixos/tar.gz/c45932ae53aa0c5da9cfddd25e7cbb503f472147";
};
in [
(import "${mobile}/lib/configuration.nix" {
device = "pine64-pinephone";
})
(import /home/dan/src/slab/hw-module.nix)
(import /home/dan/src/slab/module.nix)
];
config = {
boot.growPartition = lib.mkDefault true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs; [
dtc
file
];
# .....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment