mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: add performance profile, move things around somewhat
This commit is contained in:
parent
2189d0592f
commit
e16019c75b
7 changed files with 45 additions and 66 deletions
28
nixos/profiles/graphical/distributed.nix
Normal file
28
nixos/profiles/graphical/distributed.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{config, ...}: {
|
||||
programs.ssh.extraConfig = ''
|
||||
Host daiyousei-build
|
||||
HostName daiyousei.inskip.me
|
||||
User root
|
||||
IdentityAgent /run/user/${config.users.users.kat.uid}/gnupg/S.gpg-agent.ssh
|
||||
ControlMaster auto
|
||||
ControlPath ${config.users.users.kat.home}/.ssh/master-%r@%n:%p
|
||||
ControlPersist 10m
|
||||
'';
|
||||
nix = {
|
||||
buildMachines = [
|
||||
{
|
||||
hostName = "daiyousei-build";
|
||||
system = "aarch64-linux";
|
||||
protocol = "ssh-ng";
|
||||
maxJobs = 100;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = ["benchmark" "big-parallel" "kvm"];
|
||||
mandatoryFeatures = [];
|
||||
}
|
||||
];
|
||||
distributedBuilds = true;
|
||||
extraOptions = ''
|
||||
builders-use-substitutes = true
|
||||
'';
|
||||
};
|
||||
}
|
||||
7
nixos/profiles/performance/scx.nix
Normal file
7
nixos/profiles/performance/scx.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
services.scx = {
|
||||
enable = true;
|
||||
package = pkgs.scx_git.full;
|
||||
scheduler = "scx_lavd";
|
||||
};
|
||||
}
|
||||
3
nixos/profiles/performance/zram.nix
Normal file
3
nixos/profiles/performance/zram.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
_: {
|
||||
zramSwap.enable = true;
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
_: let
|
||||
hostConfig = {
|
||||
pkgs,
|
||||
tree,
|
||||
modulesPath,
|
||||
...
|
||||
|
|
@ -28,6 +29,10 @@ _: let
|
|||
web
|
||||
]);
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.numix-icon-theme
|
||||
];
|
||||
|
||||
# TODO: Add config.microvm.stateDir to backup schedule?
|
||||
# TODO: figure out updateFlake?
|
||||
#microvm = {
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ _: let
|
|||
quiet-boot
|
||||
wireless
|
||||
gaming
|
||||
performance
|
||||
dev
|
||||
])
|
||||
++ (with tree.nixos.environments; [
|
||||
|
|
@ -172,30 +173,6 @@ _: let
|
|||
|
||||
networking.hostId = "c3b94e85";
|
||||
|
||||
programs.ssh.extraConfig = ''
|
||||
Host daiyousei-build
|
||||
HostName 140.238.156.121
|
||||
User root
|
||||
IdentityAgent /run/user/1000/gnupg/S.gpg-agent.ssh
|
||||
'';
|
||||
nix = {
|
||||
buildMachines = [
|
||||
{
|
||||
hostName = "daiyousei-build";
|
||||
system = "aarch64-linux";
|
||||
protocol = "ssh-ng";
|
||||
maxJobs = 100;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = ["benchmark" "big-parallel" "kvm"];
|
||||
mandatoryFeatures = [];
|
||||
}
|
||||
];
|
||||
distributedBuilds = true;
|
||||
extraOptions = ''
|
||||
builders-use-substitutes = true
|
||||
'';
|
||||
};
|
||||
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
|
||||
hardware.nvidia = {
|
||||
|
|
@ -206,14 +183,6 @@ _: let
|
|||
powerManagement.enable = true;
|
||||
};
|
||||
|
||||
services.scx = {
|
||||
enable = false;
|
||||
package = pkgs.scx_git.full;
|
||||
scheduler = "scx_lavd";
|
||||
};
|
||||
|
||||
zramSwap.enable = true;
|
||||
|
||||
boot = {
|
||||
zfs.requestEncryptionCredentials = true;
|
||||
loader = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
_: let
|
||||
hostConfig = {
|
||||
tree,
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
|
|
@ -53,6 +52,7 @@ _: let
|
|||
wireless
|
||||
laptop
|
||||
gaming
|
||||
performance
|
||||
])
|
||||
++ (with tree.nixos.environments; [
|
||||
niri
|
||||
|
|
@ -106,39 +106,6 @@ _: let
|
|||
];
|
||||
};
|
||||
|
||||
services.scx = {
|
||||
enable = true;
|
||||
package = pkgs.scx_git.full;
|
||||
scheduler = "scx_lavd";
|
||||
};
|
||||
|
||||
zramSwap.enable = true;
|
||||
|
||||
programs.ssh.extraConfig = ''
|
||||
Host daiyousei-build
|
||||
HostName 140.238.156.121
|
||||
User root
|
||||
IdentityAgent /run/user/1000/gnupg/S.gpg-agent.ssh
|
||||
'';
|
||||
|
||||
nix = {
|
||||
buildMachines = [
|
||||
{
|
||||
hostName = "daiyousei-build";
|
||||
system = "aarch64-linux";
|
||||
protocol = "ssh-ng";
|
||||
maxJobs = 100;
|
||||
speedFactor = 1;
|
||||
supportedFeatures = ["benchmark" "big-parallel" "kvm"];
|
||||
mandatoryFeatures = [];
|
||||
}
|
||||
];
|
||||
distributedBuilds = true;
|
||||
extraOptions = ''
|
||||
builders-use-substitutes = true
|
||||
'';
|
||||
};
|
||||
|
||||
# optional, useful when the builder has a faster internet connection than yours
|
||||
services = {
|
||||
printing.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue