Pocket: Split host config.
This commit is contained in:
parent
a32b942c26
commit
850c83ea37
|
@ -6,7 +6,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
module = {
|
module = {
|
||||||
autoupdate.enable = true;
|
|
||||||
builder.client.enable = true;
|
builder.client.enable = true;
|
||||||
distrobox.enable = true;
|
distrobox.enable = true;
|
||||||
keyd.enable = true;
|
keyd.enable = true;
|
||||||
|
|
6
host/x86_64-linux/pocket/Boot.nix
Normal file
6
host/x86_64-linux/pocket/Boot.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }: {
|
||||||
|
boot.kernelParams = [
|
||||||
|
"fbcon=rotate:1"
|
||||||
|
"video=DSI-1:rotate=90"
|
||||||
|
];
|
||||||
|
}
|
6
host/x86_64-linux/pocket/Logind.nix
Normal file
6
host/x86_64-linux/pocket/Logind.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }: {
|
||||||
|
services.logind = {
|
||||||
|
powerKey = "ignore";
|
||||||
|
lidSwitch = "ignore";
|
||||||
|
};
|
||||||
|
}
|
3
host/x86_64-linux/pocket/Tlp.nix
Normal file
3
host/x86_64-linux/pocket/Tlp.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ ... }: {
|
||||||
|
services.tlp.enable = true;
|
||||||
|
}
|
|
@ -1,16 +1,4 @@
|
||||||
{ lib, ... }: {
|
{ lib, ... }: {
|
||||||
boot.kernelParams = [
|
|
||||||
"fbcon=rotate:1"
|
|
||||||
"video=DSI-1:rotate=90"
|
|
||||||
];
|
|
||||||
|
|
||||||
services.logind = {
|
|
||||||
powerKey = "ignore";
|
|
||||||
lidSwitch = "ignore";
|
|
||||||
};
|
|
||||||
|
|
||||||
services.tlp.enable = true;
|
|
||||||
|
|
||||||
home.nixos.enable = true;
|
home.nixos.enable = true;
|
||||||
user = {
|
user = {
|
||||||
root.enable = true;
|
root.enable = true;
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
module = {
|
module = {
|
||||||
autoupdate.enable = true;
|
|
||||||
builder.client.enable = true;
|
builder.client.enable = true;
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
kernel.enable = true;
|
kernel.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue