Reformat all Nix files
This commit is contained in:
parent
9e0c1102a9
commit
355b63cf73
81 changed files with 2293 additions and 1153 deletions
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
disko.devices.disk."${config.frogeye.name}".device = "/dev/disk/by-id/mmc-DA4064_0x931f080f";
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
frogeye = {
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
{ pkgs, lib, config, nixos-hardware, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
nixos-hardware,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
boot = {
|
||||
|
@ -10,7 +16,10 @@
|
|||
};
|
||||
|
||||
frogeye.desktop = {
|
||||
x11_screens = [ "DP-1" "eDP-1" ];
|
||||
x11_screens = [
|
||||
"DP-1"
|
||||
"eDP-1"
|
||||
];
|
||||
maxVideoHeight = 1080;
|
||||
phasesCommands = {
|
||||
jour = ''
|
||||
|
@ -30,10 +39,12 @@
|
|||
# https://wiki.pine64.org/wiki/Mainline_Hardware_Decoding#mpv
|
||||
# Might be worth if using CI to build.
|
||||
|
||||
home-manager.sharedModules = [{
|
||||
# gpu-hq is too much for it to handle, even with hw decoding
|
||||
config.programs.mpv.config.profile = lib.mkForce "default";
|
||||
}];
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
# gpu-hq is too much for it to handle, even with hw decoding
|
||||
config.programs.mpv.config.profile = lib.mkForce "default";
|
||||
}
|
||||
];
|
||||
|
||||
zramSwap = {
|
||||
# Not capable of building itself otherwise
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
boot.loader.efi.canTouchEfiVariables = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue