mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-12 01:14:08 +02:00
format
This commit is contained in:
parent
dc2a4e7512
commit
dd6c19315c
3 changed files with 11 additions and 7 deletions
|
@ -65,13 +65,13 @@ in
|
||||||
environment.sessionVariables =
|
environment.sessionVariables =
|
||||||
let
|
let
|
||||||
makePluginPath =
|
makePluginPath =
|
||||||
format:
|
format:
|
||||||
"$HOME/.${format}:" +
|
"$HOME/.${format}:"
|
||||||
(lib.makeSearchPath format [
|
+ (lib.makeSearchPath format [
|
||||||
"$HOME/.nix-profile/lib"
|
"$HOME/.nix-profile/lib"
|
||||||
"/run/current-system/sw/lib"
|
"/run/current-system/sw/lib"
|
||||||
"/etc/profiles/per-user/$USER/lib"
|
"/etc/profiles/per-user/$USER/lib"
|
||||||
]);
|
]);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
CLAP_PATH = lib.mkDefault (makePluginPath "clap");
|
CLAP_PATH = lib.mkDefault (makePluginPath "clap");
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
network_interface_name = (lib.elemAt config.facter.report.hardware.network_interface 0).unix_device_name;
|
network_interface_name =
|
||||||
|
(lib.elemAt config.facter.report.hardware.network_interface 0).unix_device_name;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -116,7 +117,7 @@ in
|
||||||
federating = true;
|
federating = true;
|
||||||
federation_incoming_replies_max_depth = null;
|
federation_incoming_replies_max_depth = null;
|
||||||
max_remote_account_fields = 100;
|
max_remote_account_fields = 100;
|
||||||
federated_timeline_available =true;
|
federated_timeline_available = true;
|
||||||
languages = [
|
languages = [
|
||||||
"en"
|
"en"
|
||||||
"de"
|
"de"
|
||||||
|
|
|
@ -12,7 +12,10 @@
|
||||||
fileSystems."/home/jopejoe1/Public/games" = {
|
fileSystems."/home/jopejoe1/Public/games" = {
|
||||||
device = "/dev/sda";
|
device = "/dev/sda";
|
||||||
fsType = "bcachefs";
|
fsType = "bcachefs";
|
||||||
options = [ "compression=zstd" "nofail" ];
|
options = [
|
||||||
|
"compression=zstd"
|
||||||
|
"nofail"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||||||
|
|
Loading…
Add table
Reference in a new issue