nix config
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

plymouth fixes?

+6 -4
+2
hosts/curve/default.nix
··· 30 30 }; 31 31 32 32 boot.supportedFilesystems = [ "ntfs" ]; 33 + # https://github.com/NixOS/nixpkgs/issues/26722 34 + # boot.initrd.systemd.enable = true; 33 35 boot.plymouth = { 34 36 enable = true; 35 37 themePackages = [ pkgs.plymouth-themes ];
+4 -4
pkgs/plymouth.nix
··· 26 26 cp -r pack_2/hexagon_2 $out/share/plymouth/themes 27 27 cp -r pack_2/hexagon_dots_alt $out/share/plymouth/themes 28 28 cat pack_3/lone/lone.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/lone/lone.plymouth 29 - cat pack_3/motion/motion.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/lone/lone.plymouth 30 - cat pack_1/colorful_sliced/colorful_sliced.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/lone/lone.plymouth 31 - cat pack_2/hexagon_2/hexagon_2.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/lone/lone.plymouth 32 - cat pack_2/hexagon_dots_alt/hexagon_dots_alt.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/lone/lone.plymouth 29 + cat pack_3/motion/motion.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/motion/motion.plymouth 30 + cat pack_1/colorful_sliced/colorful_sliced.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/colorful_sliced/colorful_sliced.plymouth 31 + cat pack_2/hexagon_2/hexagon_2.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/hexagon_2/hexagon_2.plymouth 32 + cat pack_2/hexagon_dots_alt/hexagon_dots_alt.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/hexagon_dots_alt/hexagon_dots_alt.plymouth 33 33 ''; 34 34 }