not working

This commit is contained in:
Clayton Hickey 2026-03-12 22:20:44 -04:00
commit dbf7da4c57
Signed by: clay53
SSH key fingerprint: SHA256:fjW4+nfPltYzrJ4uZlYQvrYMshxHnah2S4qM8Hth9HQ
5 changed files with 115 additions and 0 deletions

39
configuration.nix Normal file
View file

@ -0,0 +1,39 @@
{inputs, pkgs, lib, ...}:
{
config = {
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
nixpkgs.overlays = [
inputs.pinephonepro-nixos.overlays.default
];
boot.kernelPackages = pkgs.linuxPackages_pinephonepro;
boot.loader.systemd-boot.enable = true;
networking = {
hostName = "pinephonepro";
networkmanager.enable = true;
};
services.openssh.enable = true;
users.users.pinephonepro = {
isNormalUser = true;
description = "Default Pinephone Pro User";
extraGroups = [
"networkmanager"
"wheel"
];
};
environment.systemPackages = with pkgs; [
neovim
fastfetch
];
programs.git.enable = true;
system.stateVersion = "25.11";
};
}