update gpdpocke3

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-12-17 02:40:50 -06:00
parent 0663c9b414
commit 8e3fe8b8db
3 changed files with 47 additions and 48 deletions

30
flake.lock generated
View file

@ -140,11 +140,11 @@
}, },
"gpdPocket3_nixpkgs": { "gpdPocket3_nixpkgs": {
"locked": { "locked": {
"lastModified": 1734083684, "lastModified": 1734323986,
"narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -177,11 +177,11 @@
}, },
"h002_nixpkgs": { "h002_nixpkgs": {
"locked": { "locked": {
"lastModified": 1734083684, "lastModified": 1734323986,
"narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -236,11 +236,11 @@
}, },
"joe_nixpkgs": { "joe_nixpkgs": {
"locked": { "locked": {
"lastModified": 1734083684, "lastModified": 1734323986,
"narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -273,11 +273,11 @@
}, },
"lio_nixpkgs": { "lio_nixpkgs": {
"locked": { "locked": {
"lastModified": 1734083684, "lastModified": 1734323986,
"narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -384,11 +384,11 @@
}, },
"nixpkgs_stable": { "nixpkgs_stable": {
"locked": { "locked": {
"lastModified": 1734083684, "lastModified": 1734323986,
"narHash": "sha256-5fNndbndxSx5d+C/D0p/VF32xDiJCJzyOqorOYW4JEo=", "narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "314e12ba369ccdb9b352a4db26ff419f7c49fa84", "rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -48,6 +48,7 @@ in
]; ];
}; };
# rate limiting for github # rate limiting for github
nix.extraOptions = '' nix.extraOptions = ''
keep-outputs = true keep-outputs = true
@ -64,6 +65,34 @@ in
flake = "/home/${settings.user.username}/.config/nixos-config"; flake = "/home/${settings.user.username}/.config/nixos-config";
}; };
# Remote build off home lio computer
programs.ssh.extraConfig = ''
Host lio_
PubkeyAcceptedKeyTypes ssh-ed25519
ServerAliveInterval 60
IPQoS throughput
IdentityFile ${config.age.secrets.nix2lio.path}
'';
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "lio_";
system = "x86_64-linux";
protocol = "ssh-ng";
maxJobs = 32;
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"uid-range" # Often helpful
];
mandatoryFeatures = [ ];
}
];
};
# TODO do I want this dynamic at all? Roaming? # TODO do I want this dynamic at all? Roaming?
time.timeZone = "America/Chicago"; time.timeZone = "America/Chicago";
# Select internationalization properties. # Select internationalization properties.

View file

@ -27,28 +27,6 @@
rustdesk.enable = true; rustdesk.enable = true;
}; };
nix = {
distributedBuilds = true;
extraOptions = ''
builders-use-substitutes = true
'';
buildMachines = [
{
hostName = "lio_";
system = "x86_64-linux";
protocol = "ssh";
maxJobs = 32;
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"uid-range" # Often helpful
];
mandatoryFeatures = [ ];
}
];
};
# machine specific configuration # machine specific configuration
# ============================== # ==============================
@ -100,30 +78,22 @@
"nvme" "nvme"
"xhci_pci" "xhci_pci"
"usbhid" "usbhid"
# "thuFryuni/PolyMC/developnderbolt"
]; ];
services.xserver.videoDrivers = [ "intel" ]; services.xserver.videoDrivers = [ "intel" ];
hardware.opengl = { hardware.graphics.enable = true;
enable = true; hardware.graphics.extraPackages = with pkgs; [
# driSupport = true;
};
# hardware.opengl.driSupport32Bit = true;
# hardware.graphics.enable = true;
hardware.opengl.extraPackages = with pkgs; [
intel-media-driver intel-media-driver
intel-vaapi-driver intel-vaapi-driver
]; ];
# Stuff from https://github.com/NixOS/nixos-hardware/blob/9a763a7acc4cfbb8603bb0231fec3eda864f81c0/gpd/pocket-3/default.nix # Stuff from https://github.com/NixOS/nixos-hardware/blob/9a763a7acc4cfbb8603bb0231fec3eda864f81c0/gpd/pocket-3/default.nix
services.fstrim.enable = true; services.fstrim.enable = true;
services.xserver.libinput.enable = true; services.libinput.enable = true;
services.tlp.enable = lib.mkDefault ( services.tlp.enable = lib.mkDefault (
(lib.versionOlder (lib.versions.majorMinor lib.version) "21.05") (lib.versionOlder (lib.versions.majorMinor lib.version) "21.05")
|| !config.services.power-profiles-daemon.enable || !config.services.power-profiles-daemon.enable
); );
# KVM module video # KVM module video
environment.shellAliases = { environment.shellAliases = {
kvm = "ffplay -i /dev/video2"; kvm = "ffplay -i /dev/video2";
}; };