mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
updated and switch stringify-ing strategy
This commit is contained in:
parent
da8e226c3a
commit
2057ff5d17
6 changed files with 32 additions and 32 deletions
|
|
@ -38,8 +38,8 @@ _: {
|
|||
;
|
||||
};
|
||||
etc = {
|
||||
"jdks/17".source = pkgs.openjdk17 + /bin;
|
||||
"jdks/8".source = pkgs.openjdk8 + /bin;
|
||||
"jdks/17".source = "${pkgs.openjdk17}/bin";
|
||||
"jdks/8".source = "${pkgs.openjdk8}/bin";
|
||||
};
|
||||
};
|
||||
networking = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
_:{
|
||||
_: {
|
||||
containers."minecraft" = {
|
||||
ephemeral = true;
|
||||
autoStart = true;
|
||||
|
|
|
|||
|
|
@ -57,8 +57,8 @@
|
|||
inherit (nvim-flake.packages.${pkgs.system}) neovim;
|
||||
};
|
||||
etc = {
|
||||
"jdks/17".source = pkgs.openjdk17 + /bin;
|
||||
"jdks/8".source = pkgs.openjdk8 + /bin;
|
||||
"jdks/17".source = "${pkgs.openjdk17}/bin";
|
||||
"jdks/8".source = "${pkgs.openjdk8}/bin";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -46,8 +46,8 @@ let
|
|||
echo 'EndSection' >> $out
|
||||
echo >> $out
|
||||
'';
|
||||
oneMonitor = pkgs.writeText "1-monitor.conf" (lib.concatStrings [(builtins.readFile xserverbase) (builtins.readFile (self + /misc/1-monitor.conf))]);
|
||||
twoMonitor = pkgs.writeText "2-monitor.conf" (lib.concatStrings [(builtins.readFile xserverbase) (builtins.readFile (self + /misc/2-monitor.conf))]);
|
||||
oneMonitor = pkgs.writeText "1-monitor.conf" (lib.concatStrings [(builtins.readFile xserverbase) (builtins.readFile "${self}/misc/1-monitor.conf")]);
|
||||
twoMonitor = pkgs.writeText "2-monitor.conf" (lib.concatStrings [(builtins.readFile xserverbase) (builtins.readFile "${self}/misc/2-monitor.conf")]);
|
||||
in {
|
||||
####VM SOUND BORKED
|
||||
services.pipewire.package = pipewire_fix.legacyPackages.${pkgs.system}.pipewire;
|
||||
|
|
@ -151,6 +151,6 @@ in {
|
|||
in [
|
||||
"L /tmp/xorg.conf - - - - ${twoMonitor}"
|
||||
"L+ /var/lib/libvirt/hooks/qemu - - - - ${qemuHook}"
|
||||
"L+ /var/lib/libvirt/qemu/Windows.xml - - - - ${self + /misc/Windows.xml}"
|
||||
"L+ /var/lib/libvirt/qemu/Windows.xml - - - - ${self}/misc/Windows.xml"
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue