mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-20 03:34:07 +02:00
clean up
This commit is contained in:
parent
abcfceae15
commit
9e9331186d
4 changed files with 16 additions and 10 deletions
|
@ -213,7 +213,7 @@ in
|
||||||
};
|
};
|
||||||
profiles = {
|
profiles = {
|
||||||
default = {
|
default = {
|
||||||
extensions = with pkgs.firefox-addons; [
|
extensions.packages = with pkgs.firefox-addons; [
|
||||||
ublock-origin
|
ublock-origin
|
||||||
bitwarden
|
bitwarden
|
||||||
clearurls
|
clearurls
|
||||||
|
|
|
@ -19,35 +19,27 @@ in
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
mod-arpeggiator-lv2
|
mod-arpeggiator-lv2
|
||||||
rkrlv2
|
|
||||||
bolliedelayxt-lv2
|
bolliedelayxt-lv2
|
||||||
airwindows-lv2
|
airwindows-lv2
|
||||||
aether-lv2
|
aether-lv2
|
||||||
swh_lv2
|
swh_lv2
|
||||||
neural-amp-modeler-lv2
|
neural-amp-modeler-lv2
|
||||||
mda_lv2
|
mda_lv2
|
||||||
x42-plugins
|
|
||||||
#tunefish
|
|
||||||
mod-distortion
|
mod-distortion
|
||||||
infamousPlugins
|
infamousPlugins
|
||||||
drumgizmo
|
drumgizmo
|
||||||
distrho-ports
|
|
||||||
bshapr
|
bshapr
|
||||||
bchoppr
|
bchoppr
|
||||||
gxplugins-lv2
|
gxplugins-lv2
|
||||||
talentedhack
|
talentedhack
|
||||||
plujain-ramp
|
plujain-ramp
|
||||||
mooSpace
|
mooSpace
|
||||||
artyFX
|
|
||||||
boops
|
boops
|
||||||
metersLv2
|
metersLv2
|
||||||
bs2b-lv2
|
bs2b-lv2
|
||||||
oxefmsynth
|
|
||||||
ninjas2
|
ninjas2
|
||||||
bespokesynth
|
bespokesynth
|
||||||
zam-plugins
|
zam-plugins
|
||||||
surge-XT
|
|
||||||
surge
|
|
||||||
lsp-plugins
|
lsp-plugins
|
||||||
ladspaPlugins
|
ladspaPlugins
|
||||||
AMB-plugins
|
AMB-plugins
|
||||||
|
@ -59,7 +51,6 @@ in
|
||||||
autotalent
|
autotalent
|
||||||
tap-plugins
|
tap-plugins
|
||||||
xsynth_dssi
|
xsynth_dssi
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.sessionVariables =
|
environment.sessionVariables =
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
self.inputs.srvos.nixosModules.desktop
|
self.inputs.srvos.nixosModules.desktop
|
||||||
];
|
];
|
||||||
|
|
||||||
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
||||||
|
|
||||||
#facter.reportPath = ./facter.json;
|
#facter.reportPath = ./facter.json;
|
||||||
|
|
||||||
jopejoe1 = {
|
jopejoe1 = {
|
||||||
|
|
|
@ -17,6 +17,19 @@
|
||||||
|
|
||||||
facter.reportPath = ./facter.json;
|
facter.reportPath = ./facter.json;
|
||||||
|
|
||||||
|
virtualisation.xen = {
|
||||||
|
enable = false;
|
||||||
|
efi.bootBuilderVerbosity = "info"; # Adds a handy report that lets you know which Xen boot entries were created.
|
||||||
|
bootParams = [
|
||||||
|
"vga=ask" # Useful for non-headless systems with screens bigger than 640x480.
|
||||||
|
"dom0=pvh" # Uses the PVH virtualisation mode for the Domain 0, instead of PV.
|
||||||
|
];
|
||||||
|
dom0Resources = {
|
||||||
|
memory = 32768; # Only allocates 1GiB of memory to the Domain 0, with the rest of the system memory being freely available to other domains.
|
||||||
|
maxVCPUs = 8; # Allows the Domain 0 to use, at most, two CPU cores.
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.nix-ld = {
|
programs.nix-ld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
|
|
Loading…
Add table
Reference in a new issue